// BTN ON =====================

	function btnon(){
		//FROM PAGE EDITABLE:mNme,lnkNme,tdNme,dv1,dv2
		document.images[lnkNme].parentNode.style.color = '#fff';
		if (mNme !=='')
			{
			window.document.getElementById(mNme).style.display = 'block';
			}
		if (prntDv !=='')
			{
			window.document.getElementById(prntDv).style.background = '#CCE5F3';
			}
		if (dv1 !=='')
			{
			window.document.getElementById(dv1).style.display = 'block';
			}
		if (dv2 !=='')
			{
			window.document.getElementById(dv2).style.display = 'block';
			}
		}


	// RADIO TICKER====================================

		function radSLCT(radid){
			window.document.getElementById(radid).click();
			}

	// ORDER FORM ICON HOVER

	LstDvHvr = 'IPM';

	function hvrDv(Thdng,txt,objid){
		window.document.getElementById(LstDvHvr).innerHTML = "";
		window.document.getElementById(objid).innerHTML = "<div align='left' class='dnldhdng' style='position:absolute;z-index:100;width:200px'><b>"+Thdng+"</b>"+txt+"</div>";
		LstDvHvr = objid;
		}
		function hvrO(){
			if(LstDvHvr!=''){
				window.document.getElementById(LstDvHvr).innerHTML = "";	
				}
			}


