
var globalname;

function showme(divname,swf)
{


//h.li.style.visibility="hidden"
globalname=divname.id;

divname.style.position="absolute";

divname.style.left=screen.width/2-im.width/2;
divname.style.top=30;
divname.style.visibility="visible";
divname.style.top=0;

//Before populating Flush

document.getElementById(globalname).innerHTML = "";

document.getElementById(globalname).innerHTML = "<center><table border=0 cellspacing=0 cellpadding = 3 width=325 height=280><tr><td><object  classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 width=320 height=259><param name=movie value=" + swf + ".swf /><param name=quality value=high /><param name=bgcolor value=#000000 /><embed src=" + swf + ".swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width=320 height=259></embed></object></td></tr><tr><td height=10 colspan=2 align=center><input type=button Value=Close onclick=hideme()></td></tr></table></center><tr><td height=10 colspan=2 align=center><input type=button Value=Close onclick=hideme()></td></tr>";


//ob.innnerHTML = "<center><table border=0 cellspacing=0 cellpadding = 3 width=325 height=280><tr><td><object  classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 width=320 height=259><param name=movie value=" + swf + ".swf /><param name=quality value=high /><param name=bgcolor value=#000000 /><embed src=" + swf + ".swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width=320 height=259></embed></object></td></tr><tr><td height=10 colspan=2 align=center><input type=button Value=Close onclick=hideme()></td></tr></table></center>";

//im.style.z-index=2;
}

function hideme()
{

//var ob = document.getElementById(document.frm.txt.value);


var ob = document.getElementById(globalname);

//ob = document.frm.txt.value;

//(document.frm.txt.value).style.visibility="visible";

//h.li.style.visibility="visible"

ob.style.position="absolute";

ob.style.left=30;
ob.style.top=30;
ob.style.visibility="hidden";
ob.innerHTML="";
}

