function wishlist(product_id) {
  document.frm1.which.value = "wishlist";
  document.frm1.action = "add_wishlist.php?product_id=" + product_id;
  document.frm1.submit();
}

function getPrice() { 
  document.frm1.submit();
}

function cart(productid,pd,value_id){
  document.frm1.which.value = "cart";
  var qty = document.frm1.qty.value;
  document.frm1.action = "cart_functions.php?action=add_item_single&productid=" +productid+"&pd="+pd+"&value_id="+value_id+"&qty="+qty;
  //alert(document.frm1.action);
  document.frm1.submit();
}

function mywin(name) {
  windowHandle = window.open('<?=PATH_WEB?>pic.php?n='+name,'UserPicture','height=250,width=250,screenX=10,screenY=10,top=10,left=150');
  windowHandle.focus();
}

function load_picture(curr_obj) {
  value = curr_obj.value;
  load_content(value, 'pic');
}

function showPopup(manufact_detail) { //popup window for Manufacturer
  // alert("hello");
  var win = window.open(manufact_detail,'Manufecturer','left=330px, top=100%, right=100%,  width=650 , height=400');
  win.focus( );
}

