// JavaScript Document
function popup(url,theWidth, theHeight, theTitle, theswfWidth, theswfHeight)
{
	newwindow=window.open('','name','width='+theWidth+',Height='+theHeight+'resizable=no,scrollbars=no,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}

  newwindow.document.write('<html><head><title>'+theTitle+'</title>');
  newwindow.document.write('<link rel="stylesheet" href="../css/popup.css">');
  newwindow.document.write('</head><body>');

  newwindow.document.write('<table width="100%" border="0" height="100%"> <tr><td><div align="center"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width='+theswfWidth+' height='+theswfHeight+'>');
  newwindow.document.write('</head><body>');

  newwindow.document.write('<param name=movie value="'+url+'">');
  newwindow.document.write('<param name=quality value=high>');
  newwindow.document.write('<param name=bgcolor value=#FFFFFF>');
  newwindow.document.write('<embed src="'+url+'" quality=high bgcolor=#FFFFFF width='+theswfWidth+' height='+theswfHeight+'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
  newwindow.document.write('</embed></object></div>');
  newwindow.document.write('</td></tr></table>');
  newwindow.document.write('<script type="text/javascript"><!-- var sc_project=468450; var sc_partition=2;//--></script>');
  newwindow.document.write('</body></html>');
}
