function OpenPop(Url, Width, Height)
{
	var win = window.open(url, url, "toolbar=no,width=" + Width + ",height=" + Height + ",menubar=no,status=no,scrollbars=no,left="+((screen.width-Width)/2)+",top="+((screen.height-Height)/2));
	win.focus();
}


//ÇÃ·¡½Ã »ðÀÔ ½ºÅ©¸³Æ®
// s: Source Url
// d: Flash Id
// w: Source Width
// h: Source Height
// t: Wmode ("" for none, transparent, opaque ...)
function flash_mode(s,d,w,h,t){
	return "<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="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=quality value=high /><embed src="+s+" quality=high wmode="+t+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>";
}

// Write Document Contents(Flash)
function documentwrite(src){
	document.write(src);
}