function loadpagetop(PT_URL, PT_BORDERSIZE, PT_BORDERCOLOR)
{
document.write ('<table style="height: 260px; width: 160px; border: ');
document.write (PT_BORDERSIZE);
document.write ('px solid #');
document.write (PT_BORDERCOLOR);
document.write (';" cellspacing="0" cellpadding="0">');
document.write ('<tr>');
document.write ('<td>');
document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id=aa style="height: 260px; width: 160px;" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0">');
document.write ('<param name="movie" value="');
document.write (PT_URL);
document.write ('">');
document.write ('<param name="quality" value="high">');
document.write ('<param name="play" value="true">');
document.write ('<param name="loop" value="true">');

 var ShockMode = 0;
 if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
 	 if (navigator.plugins && navigator.plugins["Shockwave Flash"])
 	   ShockMode = 1;
 } if (ShockMode ) {
   document.write('<embed src="');
   document.write (PT_URL);
   document.write('"');
   document.write(' width=160 height=260 quality="high" loop="true"');
   document.write('; TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
 document.write('</EMBED>');
 } else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)) {   document.write('<IMG SRC="nonflash.gif" width=16s0 height=260>');
}
 

document.write ('</OBJECT>');
document.write ('</td>');
document.write ('</tr>');
document.write ('</table>');
}