<!--

////////////////////////////////
// Pop up used for Buy button
////////////////////////////////
function openpopup(url,w,h,scroll)
	{
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		
	    newwindow = window.open(url+'.html','','status=no,scrollbars=' + scroll +',directories=no,menubar=no,toolbar=no,location=no,resizable=no,width=' + w +',height=' + h+',left=' + winl + ',top=' + wint + '');
		newwindow.focus();
	} 

//-->