/* Open Popup Window */
function openWindow(url) {
	//	determine window dimensions and 
	//  point of window creation.
	var spawnWidth = 540;		// this defines the new window width
	var spawnHeight = 423;		// this defines the new window height
	var spawnLeft = (screen.width / 2) - (spawnWidth / 2);
	var spawnTop = 22;
    tallWin = window.open(url,'AMSF','toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=1,resizable=1,width='+spawnWidth+',height='+spawnHeight+',left='+spawnLeft+',top='+spawnTop+',fullscreen=no');
    if (navigator.appName == 'Netscape') {
	    tallWin.focus();
    };
};


/* Close Popup Window */
function closewindow() {
	self.opener = this;
	self.close()
}


