//
// infoPopup.js
//
//
//  opens an html page in a popup window

function infoPopup (theInfoFile, thewidth, theheight) {

	if (document.all) {
		window.open (theInfoFile, 'infoPopup', 'leftmargin=5,topmargin=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + thewidth + ',height=' + theheight + ',left=20,top=20')
	} else {
		window.open (theInfoFile, 'infoPopup',  'leftmargin=5,topmargin=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + thewidth + ',height=' + theheight + ',screenx=20,screeny=20')
	}
}

