
function runSwf(clsid, id, w, h, url, bg) {
   document.write("<object classid=\"clsid:" + clsid + "\"\n");
   document.write("   codebase=\"http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0\"\n");
   document.write("   id=\"" + id + "\" width=\"" + w + "\" height=\"" + h + "\">\n");
   document.write("   <param name=\"movie\" value=\"" + url + "\">\n");
   document.write("   <param name=\"quality\" value=\"high\">\n");
   document.write("   <param name=\"bgcolor\" value=\"" + bg + "\">\n");
   document.write("   <embed src=\"" + url + "\" quality=\"high\" bgcolor=\"" + bg + "\" width=\"" + w + "\" height=\"" + h + "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com /shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"> </embed>\n");
   document.write("</object>\n");
}

function nexturl_open(id) {
   window.location.href = nexturlent[id];
}

function nextwin_open(id) {
	testwindow = window.open(nexturlent[id], "window" + id,"width=520,height=620,screenX=0,screenY=0");
}


