function openEmailWindow(){
	var querystring = this.document.URL;
	var emailWindow = window.open("emailPage.htm?&pagename="+selectedPageName+"&linkname="+querystring,"EmailWindow","width=400,height=250,toolbar=0,resizable=0");
}

function openInfoWindow(){
	var infoWindow = window.open("infoPage.htm?&pagename="+selectedPageName,"InfoWindow","width=400,height=250,toolbar=0,resizable=0");
}

function openPrintWindow(){
	var printArea = document.getElementById("mainArea");
	printArea.contentWindow.focus();
	printArea.contentWindow.print();
}

function openContactPage(){
	var infoWindow = window.open("contact_us.htm","ContactWindow","width=400,height=250,toolbar=0,resizable=0");
}

function openHomePage(){
	window.location = "http://www.millenworks.com/html/index.htm";
}

function openSiteMap(){
	location.href = "sitemap.htm";
}

function openSearchResults(){
	var searchBox = document.getElementById("searchString");
	if((searchBox.value != null)||(searchBox.value != "")){
		//alert("Searching for: " + searchBox.value);
	}
	alert("setting location to :" + "/html/search.htm?search=" + searchBox.value);
	//window.location="/html/search.htm?search=" + searchBox.value;
}

function openCPWindow(){
	var companyProfileWindow = window.open("aboutus/MillenWorks_Company_Profile.pdf","PrintWindow","width=800,height=600,toolbar=1,resizable=1");
}

function openDisclaimerWindow(){
	var disclaimerWindow = window.open("disclaimer.htm","DisclaimerWindow","width=300,height=550,toolbar=0,resizable=0");
}
	