function inquiry(){
if (location.search != ""){
	var x = location.search.substr(1).split("&")
	for (var i=0; i<x.length; i++){
		var y = x[i].split("=");
		if(y[0]=="productName"){
			document.getElementById('Pname').innerHTML=unescape(y[1]);
			// this is for forms
			// document.getElementById('contact_form_input_inquiryContactForm_name').value = unescape(y[1]);
		}
		if(y[0]=="ref"){
			document.getElementById('RefNo').innerHTML=unescape(y[1]);
			document.getElementById('contact_form_input_inquiryContactForm_Ref').value = unescape(y[1]);
		}
		}
		if(y[0]=="price"){
			document.getElementById('Price').innerHTML=unescape(y[1]);
		}
	}
}


function doPrint(){
	newWindow = open('/en_US/Print.html',null,'menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=no, status=yes, width=650, height=700');
	if (newWindow.opener == null){
		newWindow.opener = self;
	}
}
