// function to show passed Msds_ID in cfwindow (calls page that handles display of msds and also manages recent msds list)
function showRecentMsds(msdsID,wTitle){
	ColdFusion.Window.create("viewMSDS"+Math.random(),"View Product - " + wTitle, "/view_msds/searchdetail.cfm?msds_id="+msdsID+"&vaultUserView=true",{
      modal:false,
      width:800,
      height:650,
      center:true,
	  closeAction:'close'
   });
}

function showRecentMsds2(msdsID,mainhomeurl){
newwindow = window.open(mainhomeurl + "/view_msds/searchdetail.cfm?msds_id="+msdsID+"&vaultUserView=true", "", 	"toolbar=no,location=no,directories=no,status=yes,menubar=yes," + "scrollbars=yes,copyhistory=no,resizable=yes,width=800,height=650");
	return;
}