function popUpHelp( helpMessageID )
{
    url = 'Help.aspx?ID=' + helpMessageID;
    popup(url,500,300);
}
		    
function popUpInstruction( helpMessageID )
{
    url = 'Help.aspx?ID=' + helpMessageID;
    popup(url,600, 400);
}
		    
function popup(url, width, height)
{
    if( navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) >= 4 )
    {
        open(url,"Help","scrollbars=yes,innerwidth="+width+",innerHeight="+height+",resizable=1");
    }
    else
    {
        open(url,"Help","scrollbars=yes,width="+width+",height="+height+",resizable=1");
    }
}

