// JavaScript Document



var newWindow
function emailWindow()
{
   		if (!newWindow || newWindow.closed) {
		// THIS IS THE NEW LINK - Does not work: it doesn't specify where to send the file.
		 // newWindow = window.open("https://www.northernmicro.com/en/gov/sendquote.asp","","status,height=300,width=280")
		//

		// THIS IS THE OLD  LINK - I can't find emailquote.asp
		newWindow = window.open("https://www.northernmicro.com/en/government/products/desktops/customize/emailquote.asp?SURL=","","","status,height=300,width=280")



		if (!newWindow.opener) {
			newWindow.opener = window
		}
		} else {
		// window's already open; bring to front
		newWindow.focus()
		}

}


