// src   : source url
// fid   : flash id
// width : source width
// height: source height
// mode  : wmode ("" for none, transparent, opaque ...)
function flash2(src,fid,width,height,mode){
  document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=" + width + " height=" + height + " id=" + fid + "><param name=wmode value=" + mode + " /><param name=movie value=" + src + " /><param name=quality value=high /><param name=salign value=L><param name=scale value=noscale><embed src=" + src + " quality=high wmode=" + mode + " type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width=" + width + " height=" + height + "></embed></object>");
}

// write document contents
function print(src){
  //document.write(src);
}


function ShowFlash2(url, width, height){
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"" + width + "\" height=\"" + height + "\" VIEWASTEXT>");
		document.write("<param name=\"movie\" value=\"" + url + "\">");
		// document.write("<param name=\"wmode\" value=\"opaque\">");
		document.write("<param name=\"quality\" value=\"high\">");
		document.write("<param name=\"wmode\" value=\"transparent\">");
		document.write("<param name=\"menu\" value=\"false\">");
		document.write("<param name=\"scale\" value=\"noScale\">");
		document.write("<embed src=\"" + url + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + width + "\" height=\"" + height + "\"></embed>");
		document.write("</object>");
}
function ezpop(GO,NAME,WP,HP,BAR)
{
	var LP = (screen.width) ? (screen.width-WP)/2 : 0;
	var TP = (screen.height) ? (screen.height-HP)/2 : 0;
	var objPopup = window.open(GO, NAME,'width='+WP+',height='+HP+',top='+TP+',left='+LP+',statusbar=no,scrollbars='+BAR+',toolbar=no,toolbar=no,resizable=yes');
	if (objPopup == null) { 
		alert("Â÷´ÜµÈ ÆË¾÷Ã¢À» Çã¿ëÇØ ÁÖ¼¼¿ä."); 
	}
}
