function openWindow(url) 
{ 
   popupWin = window.open(url, 'openWin', "width=700, height=600, scrollbars=yes, resizable=yes left=100"); 
}

function goNewWinCapresso2(newlink) 
{

window.open("http://www.capresso.com/" + newlink,'TheNewpop', config='height=350, width=300, left=370, top=150, toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=no,resizable=no');
}
function goNewWin(newlink) 
{

window.open("http://www.capresso.com/kapers/" + newlink,'TheNewpop', config='height=350, width=300, left=370, top=150, toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=no,resizable=no');
}

function openWindow2(url) 
{ 
   popupWin = window.open(url, 'openWin', "width=400, height=415, scrollbars=yes, resizable=yes"); 
}

function openSubscribe(url)
{
	popupWin = window.open(url, 'SubscribeWindow', "width=700, height=600, scrollbars=yes, resizable=yes"); 
}

function openembeddedvideopage(url)
{
	popupWin = window.open(url, 'EmbeddedWindow', "width=400, height=400, scrollbars=no, resizable=no"); 
}

function openclicktoenlarge(url, h, w) 
{
	var winAttr = "height=" + (h+15) + "," +
	              "width=" + (w+15) + "," +
				  "status=yes,toolbar=no,menubar=no,location=no,scrollbars=no" ;
   popupWin = window.open(url, 'openWin', winAttr); 
   return false;
}

function openWindow3(url, w, h) 
{ 
   popupWin = window.open(url, 'openWin', "width="+w+", height="+h+", scrollbars=no, resizable=no"); 
}

function openWindowScrollable(url, w, h) 
{ 
   popupWin = window.open(url, 'openWin', "width="+w+", height="+h+", scrollbars=yes, resizable=yes"); 
}

function openWindowScrollable2(url, w, h) 
{ 
   popupWin = window.open(url, 'openWin3', "width="+w+", height="+h+", scrollbars=yes, resizable=yes"); 
}

function openWindowScrollable3(url, w, h,windowname) 
{ 
   popupWin = window.open(url, windowname, "width="+w+", height="+h+", scrollbars=yes, resizable=yes"); 
}