
function opengifwindow(url)
{
	var helpwin_height = 700;
	var helpwin_width  = 600;

	var helpwin_height = (4 * document.body.clientHeight) / 5;
	var helpwin_width  = (4 * document.body.clientWidth) / 5;
	
	helpwindow=open(url,'GIFWindow',
		'toolbar=no,scrollbars=yes, resizable=yes, width='+ helpwin_width + ',height=' + 
		helpwin_height);helpwindow.focus();
 
}

function getsubPanel(localURL)
{

    var url = '' + localURL + '';
   for ( i = url.length; i >=0; i = i-1)
    {
        c = url.charAt(i);

        if (c == "=")
        {
            return url.substring(i + 1);
         }
    }

    return 'none';
}

