
function MM_openBrWindow(theURL,winName,features) { //v2.0
var w;
 w=window.open(theURL,winName,features);
 w.focus();
   self.event.returnValue=false;}

function ACC_openCurrencyWindow(theURL,price) {
	var newUrl;
	newURL=theURL+"?"+price;
	var tempWindow = window.open(newURL,"remote","width=620, height=420,toolbar=0,scrollbars=1");
	tempWindow.focus();
}   