
// these are utilities on each page for
// http://www.airproair.com
// consolidated here for ease of maintenance

/*
print this page script
*/

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

/*
bookmark script
*/
function add2browser() {
//configure the two variables below to match yoursite's own info
var bookmarkurl="http://www.airproair.com"
var bookmarktitle="AIRPRO ONLINE" 

if (window.sidebar&&window.sidebar.addPanel)
window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
else 
 if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)

}
/*
open new window with variables script
*/

	function openWin( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
	} 

