function winOpen(url,nme,prpt)
		{
			var sURL = url;
			var sName = nme;
			var sFeatures = prpt;
 			window.open(sURL, sName, sFeatures);
		}
		
		
function OpenPop(url,n,w,h,s){
		window.open(url,n,"menubar=no,resizable=no,statusbar=no,width="+w+",height="+h+",top=130,left=150,scrollbars="+s)
		
	}


function showHide(show,hide)
		{
		 var showObj,hideObj;
		  hideObj= eval("document.all."+hide);
		  showObj= eval("document.all."+show);
		   showObj.style.display='inline';
		   hideObj.style.display='none';
		}	
		
