// JavaScript Document

function showPrice(str)
{	
	if (str=="")
	{
		document.getElementById("price").innerHTML="";
		return;
	}
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	xmlhttp.onreadystatechange=function()
	{
		
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
		  document.getElementById("price").value=xmlhttp.responseText;
		}
		
	}
		
	xmlhttp.open("GET","getProdPrice.php?prod_id="+str,true);
	xmlhttp.send();
}

function showHide(id)
{
	var el = document.getElementById(id);
	
	if(el.style.display == 'block')
	{
		el.style.display = 'none';
	}
	else
	{
		el.style.display = 'block';
	}
}
