function flash(file, width, height, link)
{
	var c = "<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" ";
	c += "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" ";
	c += "WIDTH=\"" + width + "\" HEIGHT=\"" + height + "\">";
	c += "<PARAM NAME=movie VALUE=\"" + file + "?link_id=" + link + "\">";
	c += "<PARAM NAME=loop VALUE=\"true\">";
	c += "<PARAM NAME=wmode VALUE=\"transparent\">";
	c += "<PARAM NAME=quality VALUE=high>";
	c += "<EMBED src=\"" + file + "?link_id=" + link + "\" loop=true menu=false wmode=transparent quality=high WIDTH=\"" + width + "\" HEIGHT=\"" + height + "\" ";
	c += "TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED></OBJECT>";
	
	document.write(c);
}