function openDetail( loc, windowname )
{
pop = window.open(loc,'detail','left=0,top=75,screenX=0,screenY=75,width=900,height=657,scrollbars,resizable');
if(pop.opener == null)
{
	pop.opener = window;
	pop.opener.name = "opener";
}
pop.focus();
}

function openDetailSizable( loc, windowname, thewidth, theheigth )
{
pop = window.open('',windowname,'left=0,top=75,screenX=0,screenY=75,width=' + thewidth + ',height=' + theheigth + ',scrollbars,resizable');
pop.location.href=loc;
if(pop.opener == null) pop.opener = window;
pop.opener.name = "opener";
pop.focus();
}

function printWindow(){
   version = parseInt(navigator.appVersion)
   if (version >= 4) window.print()
}

function download( loc )
{
location.href="/members/download.asp?ProductID=" + loc;
}

function payment_tip(){
		window.open("/work/popup-payment-tip.htm", "win", "width=440, height=480");
}

function openFeature( loc, windowname )
{
pop = window.open(loc,'detail','left=0,top=75,screenX=0,screenY=75,width=900,height=657,scrollbars,resizable');
if(pop.opener == null)
{
	pop.opener = window;
	pop.opener.name = "opener";
}
pop.focus();
}

