function RunFlash(movie, width, height)
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' + height + '" id="movie1" align>\n');
   document.write('<param name="Movie" value="' + movie +'">\n');
   document.write('<param name="Quality" value="high">\n');
   document.write('<param name="wmode" value="transparent" />\n');
   document.write('<embed src="' + movie + '" wmode="transparent" quality="high"  width="' + width + '" height="' + height + '" name="movie1" align type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
   document.write('</object>\n');
}

function setAutoXY(formname, xname, xvalue, yname, yvalue)
{
if (xvalue == 0 && yvalue == 0)
	{
	xvalue = 1;
	yvalue = 1;
	}
var execute = "document."+formname+"."+xname+".value="+xvalue+"; document."+formname+"."+yname+".value="+yvalue; 
eval(execute);
}