function alp(theURL,winName,features) {
if (document.layers) {
  window.open(theURL,'',features);
	   } else {
  msgWindow=window.open("","",features);
  msgWindow.document.write('<html><HEAD><TITLE>'+ winName + '</TITLE>');
  msgWindow.document.write('</HEAD><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="border:1px solid #6777B7;">');
  msgWindow.document.write('<table border=0 width="100%" height="100%" cellspacing=0 cellpadding=0><tr><td align="center"><img src='+theURL+' border=0></td></tr></table>');
  msgWindow.document.write('</body></html>');
  }
}

        function MM_preloadImages() { 
                var d=document; 
                if(d.images){ 
                if(!d.MM_p) d.MM_p=new Array();
                var i,j=d.MM_p.length,a=MM_preloadImages.arguments; 
                for(i=0; i<a.length; i++)
                 if (a[i].indexOf("#")!=0)
                 { d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        }

