var popwin;

function popUpImage(theImageURL)
{
	popwin = window.open(theImageURL,'popWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=400,height=10');
	popwin.focus();
}

function popUpPromo(theURL)
{
	popwin = window.open(theURL,'popWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=400,height=500');
	popwin.focus();
}


function popUpCurrency(amount)
{
	popwin = window.open('currencyConvert.cfm?amount='+amount,'popWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=410,height=250');
	popwin.focus();
}

function popUpMap(theURL)
{
	popwin = window.open(theURL,'popWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=580,height=450');
	popwin.focus();
}

