function showMachineForm(val)
{
	
	if (val== "Buy") {
		  document.getElementById('Buyrows').style.display	= "";
		  document.getElementById('Sellrows').style.display = "none";
		  document.forms["BuySellForm"].enquirytype.value='Buy';
		  document.forms["BuySellForm"].stocktype.value="";
		  document.forms["BuySellForm"].specification.value="";
	} else if (val== "Sell") {
	    document.getElementById('Buyrows').style.display	= "none";
		  document.getElementById('Sellrows').style.display	= "";
		  document.forms["BuySellForm"].enquirytype.value='Sell';
		  document.forms["BuySellForm"].stocktypeB.value="";
		  document.forms["BuySellForm"].specificationB.value="";
	}
}


function showEnquiryForm() {
	document.getElementById('EnquiryForm').style.display = "";
}


function popupPrint(URL) {
 day = new Date();
 id = day.getTime();
 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=460,height=550,left = 326,top = 232');");

}
function popupVideo(URL) {
 day = new Date();
 id = day.getTime();
 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=440,height=410,left = 326,top = 232');");

}



function popupimgEnlarge(URL) {
 day = new Date();
 id = day.getTime();
 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=860,height=700,left = 226,top = 132');");

}

function appendText(s) { document.forms['search']['searchkeyword'].value = s; }
