<!--
	
	// One object tracks the current modal dialog opened from this window.
	window.name = 'main';
	
	// this function will be modified to call the openDialog function
	//**********************************************************************
	// openWindow()
	// author:	Paul Jodoin
	// date:	6/04/01
	// purpose: opens a window and sets it 10 pixels off of the left corner
	// parameter(s): a valid url	
	//**********************************************************************
	function openWindow(url) {
		
		var priceWin;
		var attr = new String();
		var Nav4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4))
		var IE4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
		
		if(Nav4) {
			attr = 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=500,height=500,screenX=10,screenY=10,resizable=yes';
		}
		else { 
			attr = 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=500,height=500,top=10,left=10,resizable=yes';
		}//if()
		
		if((!Nav4)&&(!IE4)) {
			priceWin = window.open(url, 'priceWin', 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=500,height=500,resizable=yes');
		}
		else {	
			priceWin = window.open(url, 'priceWin', attr);
		}//if()
	}//end function

//-->