// JavaScript Document
function createFlash(clsid, codebase, objectid, width, height, url) {
	document.write('<object classid="clsid:' + clsid + '" codebase="' + codebase + '" width="' + width + '" height="' + height + '" id="' + objectid + '">\n');
	document.write('<param name="movie" value="' + url + param + '">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="' + url + param + '" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" name="' + objectid + '"></embed>\n');
	document.write('</object>\n');
}


// for New PC detail top
function createFlashEx(clsid, codebase, objectid, width, height, url) {
	document.write('<object classid="clsid:' + clsid + '" codebase="' + codebase + '" width="' + width + '" height="' + height + '" id="' + objectid + '">\n');
	document.write('<param name="movie" value="' + url + param + '">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="bgcolor" value="#2d2d2d">');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="' + url + param + '" menu="false" quality="high" bgcolor="#2d2d2d" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" name="' + objectid + '"></embed>\n');
	document.write('</object>\n');
}