function showFlash (url, width, height)
{
    document.write(
	    '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"> '+
	    '<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+url+'" /><param name="quality" value="high" /><param name="wmode" value="transparent" /> '+
	    '<embed src="'+url+'" quality="high" width="'+width+'" height="'+height+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" /> '+
	    '</object>'
    );
}

function OpenPopUp(file, width, height)
{
   var maxY = screen.availHeight;
   var maxX = screen.availWidth;  
   var x = (maxX - width) / 2;
	var y = (maxY - height) / 2;
    var w = window.open(file,'date_chooser','status=yes,scrollbars=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
    if (w != null)
	    w.focus();
}