function openPDF(file) {
   var win = open(file,'ahgPDFWindow','width=800,height=600,resizable=yes,locationbar=no,menubar=no,scrollbars=yes,toolbar=no');
   win.focus();
}

function showStatus(status) {
   window.status = status;
   return true;
}

function Openwin(URL){
	WebMd = window.open(URL, "WebMdWindow")
	WebMdWindow.focus()
}