
//---------------------------------------------
// Pop-Up Javascript functions
//---------------------------------------------


function helpPage(page, s, l, t, w, h)
{
	var windowprops = "location=no,menubar=no,toolbar=no,status=no,resizable=yes,titlebar=no" + ",scrollbars=" + s + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	var URL = page;
	window.open(URL,"FieldHelp",windowprops);
}
	


function popupPage(page, s, l, t, w, h) {
	var windowprops = "location=no,menubars=no,toolbars=no,resizable=yes" +
		",scrollbars=" + s + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	var URL = page;
		window.open(URL,"MenuPopup",windowprops);
	}
	
function popupPage2(page, title, s, l, t, w, h) {
	var windowprops = "location=no,menubars=no,toolbars=no,resizable=yes" +
		",scrollbars=" + s + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	var URL = page;
	var pagetitle = title;
		window.open(URL,pagetitle,windowprops);
	}
	
	


	
	
function displayNEpdf() {
		window.open("documents/blch-p-ne-302-4P.pdf");
	}
	
function displayQuickSearchpdf() {
		window.open("documents/quickSearch.pdf");
	}
	
function displayAssistedSearchpdf() {
		window.open("documents/assistedSearch.pdf");
	}
	
function displayProviderDetailpdf() {
		window.open("documents/providerDetail.pdf");
	}
	
