//
// popupWindow.js
//
//
//  opens a specified URL in a sized popup window

function popupWindow (theURL, thewidth, theheight) {

	if (document.all) {
		window.open (theURL, 'infoPopup', 'leftmargin=0,topmargin=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + thewidth + ',height=' + theheight + ',left=20,top=20');
	} else {
		window.open (theURL, 'infoPopup',  'leftmargin=0,topmargin=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + thewidth + ',height=' + theheight + ',screenx=20,screeny=20');
	}
}


