<!--
function openPosting( postingUrl ) {
    var theBrowser=navigator.appName + ' v' + navigator.appVersion;
    var isIE = theBrowser.indexOf ('IE') >= 0 ;
    var isNav = theBrowser.indexOf ('Netscape') >= 0 ;
    height='600' ;
    //width='800' ;
	width='830';

    var winLeft='' ;
    var winTop='' ;

    scrWidth=window.screen.availWidth ;
    scrHeight=window.screen.availHeight ;

    if (isIE ) { winLeft = ', left='+(scrWidth-1024)/2 ; winTop = ', top=' + (scrHeight-768)/2 }
    if (isNav ) { winLeft = ',screenX='+(scrWidth-1024)/2 ; winTop = ',screenY='+(scrHeight-768)/2 }
    var jobWin=window.open( '','','dependent=no,toolbar=no,menubar=no,location=no,directories=no,modal=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+','+winLeft+','+winTop );
    var astr='';
    astr='<HTML><HEAD>' ;
    astr+='<TITLE>Loading</TITLE>' ;

    astr+='</HEAD>' ;
    astr+='<BODY style="font-family:sans-serif; font-weight:bold">' ;
    astr+='Loading, please wait....' ;
    astr+='</BODY></HTML>' ;
    jobWin.document.write(astr);
    jobWin.location.href=postingUrl;
    jobWin.focus()
}
// -->