
<!--
	
	function popWin(popUpURL,theName,popUpWidth,popUpHeight){
	
		// popUpHeight can be numerical value or 'Fill' which indicates "fill the screen"...

		var featureSet = 'TOOLBAR=no,LOCATION=no,DIRECTORIES=no,STATUS=no,MENUBAR=no,SCROLLBARS=yes,RESIZABLE=yes';

		if (popUpHeight == 'Fill'){
			var popUpY = 26; //Must be below menubar on Macs and above Start bar on Windoze
			popUpHeight = parseFloat(window.screen.availHeight-(popUpY*2)); //center on monitor less Y starting point...
		}
		else {
			var popUpY = (parseFloat(window.screen.availHeight/2) - (popUpHeight/1.5));
		}
		var popUpX= window.screenX + window.outerWidth/2 - popUpWidth/2; //centered on the monitor...
		var popUpCoord;
		if ( parseFloat(navigator.appVersion.substring(0,navigator.appVersion.indexOf(' '))) >= 4 ) {
			if (navigator.appName == "Netscape") {	
				popUpCoord = 'SCREENX=' + popUpX + ',SCREENY=' + popUpY;
		 	}
			else {
				popUpCoord = 'LEFT=' + (parseFloat(window.screen.availWidth/2) - (popUpWidth/2)) + ',TOP=' + popUpY;
			}
			var params = (popUpCoord + ",WIDTH=" + popUpWidth + ",HEIGHT=" + popUpHeight + "," + featureSet);
			thisWindow=window.open(popUpURL,"",params);
		}
		else {
			thisWindow=window.open(popUpURL,"","WIDTH=" + popUpWidth + ",HEIGHT=" + popUpHeight + "," + featureSet);
		}
	}
	
	function mailURL(){
	var hidden = 'mailto:info' + '@surplusmotors';	
	var new_win=window.open(hidden + '.com');
	}


//-->

