function searchwindow(url)
{
  var opts = "toolbar=yes,status=no,location=no,menubar=no,resizable=no,height=420,width=680,left=50,top=50,screenx=50,screeny=50,scrollbars=yes"
  popupWin = window.open(url, 'searchwindow', opts)
}

function cart_window() {
options='toolbar=1,location=0,directories=0,status=0,menubar=0,'+
'scrollbars=1,resizable=0,width=680,height=420,'+
'screenx=50,screeny=50,left=50,top=50'
     help=window.open("http://www.premo-promos.com/main/mycart.php","help",options)
}

function addtocart(x) {
options='toolbar=1,location=0,directories=0,status=0,menubar=0,'+
'scrollbars=1,resizable=0,width=680,height=420,'+
'screenx=50,screeny=50,left=50,top=50'
     help=window.open(x,"help",options)
}

function popup(url, name)
{
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=no,height=420,width=680,left=50,top=50,screenx=50,screeny=50,scrollbars=yes";
	var popupbox = window.open(url, name, opts);
	popupbox.focus();
}