
function changeVisibility(onoff,menuname){  if (onoff==1){    document.getElementById(menuname).style.visibility="hidden";  }  if (onoff==0){    document.getElementById(menuname).style.visibility="visible";  }}
function getImgSize(id){	var pic = document.getElementById(id);	var h = pic.offsetHeight;	var w = pic.offsetWidth;  	return [h, w];}

function openPictureWindow(id) { 
        var hwArray= getImgSize(id);
	var imageHeight=hwArray[0];
	var imageWidth=hwArray[1];
        var imgSrc=document.getElementById(id).src;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left=100, top=100");
	newWindow.document.open();
	newWindow.document.write('<html><title>Kenneth A. Pikor Awards</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+imgSrc+'\" width='+imageWidth+' height='+imageHeight+'>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function IncludeJavaScript(jsFile){  document.write('<script type="text/javascript" src="'    + jsFile + '"></scr' + 'ipt>'); }
function openTextWindow(url, title, height, width) { 
       	newWindow = window.open("","newWindow","width="+width+",height="+height+",scrollbars=yes,left=100, top=100");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+title+'</title><body bgcolor="#F9FEEE" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
        newWindow.document.write('<div style="padding:30px">');
        newWindow.document.write('<script type="text/javascript" src="'    + url + '.js"></scr' + 'ipt>');
	newWindow.focus();
}
