function cartAdd(id, quan)
{
	window.open('/includes/popup_cart.php?action=add_to_cart&item_id='+id+'&quan='+quan,'cart', 'width=370,height=490,screenX=210,screenY=200,top=100,left=100,copyhistory=no,directories=no, menubar=no,location=no,scrollbars=yes,resizable=yes');
}

function cartGarniturAdd(id)
{
window.open('/includes/popup_cart_garnitur.php?action=add_to_cart&garn_id='+id,'cart', 'width=370,height=480,screenX=210,screenY=200,top=100,left=100,copyhistory=no,directories=no, menubar=no,location=no,scrollbars=yes,resizable=yes');
}

function popup(file, query)
{
window.open(file+'?'+query,'popup', 'width=370,height=480,screenX=210,screenY=200,top=100,left=100,copyhistory=no,directories=no, menubar=no,location=no,scrollbars=yes,resizable=yes');
}

function show_hide(form_id) {
if(document.getElementById(form_id))
{
	if(document.getElementById(form_id).style.display == "block")
	{
	document.getElementById(form_id).style.display = "none";
	}
	else
	{
	  document.getElementById(form_id).style.display = "block";
	}
}
}