
function vlogo(vendor,style) {
	obj = document.getElementById("v"+vendor);
	obj.src = "/static/i/vendors/"+vendor+"_"+style+".gif";
}
	

function add(id) {
  //left = (screen.width - 500) / 2;
  //top = (screen.height - 350) / 2;

  //var x = window.open("/catalog/mycart/add_"+id+".html", "add", 'scrollbars=0,resizable=no,width=500,height=350,left='+left+',top='+top+',status=1,menubar=0');
  window.open("/catalog/mycart/add_"+id+".html", "add", 'scrollbars=0,resizable=no,width=500,height=350,status=1,menubar=0');
}

	

function order(id) {
  window.open("/order.html?id="+id, "order", 'scrollbars=0,resizable=no,width=600,height=450,status=1,menubar=0');
}

function cf(text) {
  return confirm(text);
}

