
function open_help()
{
    openHelpWindow('http://help.recon.com');
}

function openHelpWindow(url)
{
    var help = window.open(url,'reconHelp','height=700, width=900, scrollbars=1, resizable=1');
	help.focus();

}