<!--
	// BEGIN SPECIAL CODE TO PREVENT OUR SITES FROM BEING LOADED INTO A FRAME
	if(top!= self) top.location.href = self.location.href;
	// END SPECIAL CODE TO PREVENT OUR SITES FROM BEING LOADED INTO A FRAME

 function popInfo(prodid, catid, format) {
  tracksWindow =
window.open('/marketplace/product_info/more_info.xpml?prod_id=' + prodid
+ '&cat_id=' + catid + '&format=' + format, 'pop_info',
'height=435,width=650,scrollbars=yes,resizable=yes,screenx=1,screeny=1,top=1,left=360');

  tracksWindow.focus();
 }
// -->

<!--
 function gold_popup() {
  goldWindow =
window.open('/help/gold_popup.xpml', 'gold_popup', 'height=200,width=500,scrollbars=yes,resizable=yes,screenx=1,screeny=1,top=1,left=360');

  goldWindow.focus();
 }
// -->

<!--
 function no_direct_link_popup() {
  goldWindow = window.open('/help/no_direct_link.xpml', 'gold_popup', 'height=300,width=420,scrollbars=yes,resizable=yes,screenx=1,screeny=1,top=150,left=300');
  goldWindow.focus();
 }
// -->

<!--
 function no_direct_link_popup_specific(merchant, product) {
  goldWindowTest = window.open('/help/no_direct_link_specific.xpml?merchant='+merchant+'&product='+product, 'gold_popup_test', 'height=300,width=433,scrollbars=no,resizable=no,screenx=1,screeny=1,top=150,left=300');
  goldWindowTest.focus();
 }
// -->

<!--
function openPopup(theURL,winName,features) {
  window.open(theURL,winName,features);

}
function openAlmostMax (URL) {
	width = 630, height = 460;
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			width = window.innerWidth;
			height = window.innerHeight;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			width = document.body.offsetWidth;
			height = document.body.offsetHeight;
		}
	}
	width -= 20;
	height -= 20;
	var left;
	left = (screen.width - width) / 2;
	var top;
	top = (screen.height - height) / 2;
	var new_popup = window.open(URL,'POPUP','left='+left+',top='+top+',height='+(height)+',width='+(width)+',scrollbars,resizable,location,menubar,directories,toolbar,status,personalbar,titlebar');
}
function openAlwaysMax(URL) {
	width = 630, height = 460;
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			height = screen.height;
			width = screen.width;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			height = screen.height-32;
			width = screen.width;
		}
	}
	var new_popup = window.open(URL,'POPUP','left=0,top=0,height='+(height)+',width='+(width)+',scrollbars,resizable,location,menubar,directories,toolbar,status,personalbar,titlebar');
}
function openCondition(URL) {
	winWidth = 630;
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			winWidth = window.innerWidth;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			winWidth = document.body.offsetWidth;
		}
	}
	if (winWidth >= screen.width) {
		openAlwaysMax(URL);
	} else {
		openAlmostMax(URL);
	}
}
//-->

<!--
function openPopup2(theURL,winName,features) {
 windowHandle =  window.open(theURL,winName,features);
                if (!windowHandle.opener)
                        windowHandle.opener = self;
        windowHandle.focus ();
}
//-->