function openHelpWin ()
{
	helpWin = window.open('','helpWin','0,0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=400');
	helpWin.moveTo(0,0);
	helpWin.focus();
	helpWin.document.write('<html><head><title>Help<\/title><\/head>');
	helpWin.document.write('<body bgcolor="#ccccff" text="#000000" link="#33ccff" vlink="#ff6666">');
	helpWin.document.write('<center>');
	helpWin.document.write('<br><br><br><br>');

	helpWin.document.write('<font size="2" face="arial, helvetica, sans-serif"><b>Loading Help<blink>...<\/blink><\/b><\/font><br>');
	
	helpWin.document.write('<\/center>');
	helpWin.document.write('<\/body><\/html>');
	helpWin.location = "/wiz/wiz_homepage/wz_hp_step_00.htm";
}

