/* Developed by EverMedia
JSMASTER
Version 1.03
*/


/*DETECTA PLUGIN DO FLASH */
/* START: GLOBAL VARS */
var flashDir = "/webapp/wcs/stores/EUKDLX/flash/";
/* Default Flash version supported,
Flash Write function can override this if passed a different version as the last argument*/
var flash_ver = 7;



function flash_whwm (url, width, height, wmode) {
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + flash_ver + '" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="movie" value="' + url + '"/>');
	document.writeln('<param name="quality" value="high" /> ');
	document.writeln('<param name="WMODE" value="' + wmode + '"/>');
	document.writeln('<embed src="' + url + '"  width="' + width + '" height="' + height + '" wmode="' + wmode +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
	}





















