// begin popTest script - creates the the skill chart pop up

function popTest(){
picwindow=window.open("","SkillChart","status=no,location=no, directories=no,menubar=no,scrollbars=no,resizable=0,left=100,top=100,width=400,height=575");

	picwindow.document.open("text/html");
	picwindow.document.writeln("<html>");
	picwindow.document.writeln("<meta http-equiv='content-type' content='text/html;charset=iso-8859-1'>");
	picwindow.document.writeln("<head>");
	picwindow.document.writeln("</head>");
	picwindow.document.writeln("<title></title>");
	picwindow.document.writeln("<body leftmargin='0' Topmargin='0' marginwidth='0' marginheight='0'>");
	picwindow.document.writeln("<img src='/imagelib/mtnschool/ms_skillLevels.gif' border='0'>");
	picwindow.document.writeln("<a href='javascript:self.close()'><font face='Trebuchet MS,Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size='2'  color='#000000'>Close Skill Chart</font></a>");
	picwindow.document.writeln("</body>");
	picwindow.document.writeln("</html>");	
	picwindow.document.close();

}


function closeWin(){
	picwindow.close();
}