function OpenHelp()
{
        var w = 900; 
	var h = 550; 
	var move = screen ? ',left=' + ((screen.width - w) >> 1) + ',top=' + ((screen.height - h) >> 1) : '';
        w1 = window.open('/help.php', 'HELP', "help=no,status=yes,scrollbars=yes,resizable=no" + move + ",width=" + w + ",height=" + h + ",dependent=no", true);
        w1.focus();
}


function CloseHelp(win)
{
	win.close();
}

function FromHelpToPage2(win,url)
{
	alert("ss2");
	parent.location.href=url;
	win.close;
}

