	
	function setProductID(_id) {
		document.getElementById("product_id").value = _id;
	}
	
	function url(_url) {
		window.location = _url+","+document.getElementById("product_id").value;
	}
	
	function addToCart(price)
	{
		document.getElementById('price_id').value = price;
		document.Form.submit();
	}
	
	function doPost()
	{
		document.Form.submit();
	}
	
	function addToProducts(frame, product)
	{
		//alert('Frame: ' + frame + ' Product: ' + product);
		document.getElementById(frame).value = product;
	}
	
	function conf(title, url)
	{
		$.prompt(title,	{ 
						overlayspeed: "fast",
						buttons: { Ja: true, Nej: false },
						callback:function(v,m) { if(v) { window.location=url; } else { return false; }}
		});
	}
	
	function showAndHide(showDIV, hideDIV)
	{
		document.getElementById(showDIV).style.display = 'inline';
		document.getElementById(hideDIV).style.display = 'none';
	}
