﻿// lo: source url
// w: source width
// h: source height
// t: wmode ("" none, transparent, opaque ...)
/*
function view_flash(lo,w,h,t)
{
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'" id="flashID">');
	document.write ('<param name="movie" value="'+lo+'">');
	document.write ('<param name="quality" value="high">');
	document.write ('<param name="wmode" value="'+t+'">');
	document.write ('<embed src="'+lo+'" quality="high" wmode="'+t+'" width="'+w+'" height="'+h+'" name="flashID" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" 	width="></embed>');
	document.write ('</object>');
}
*/
function view_flash(url,width,height,t)
{
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='" + width + "' height='" + height + "'>");
	document.write("<param name='movie' value='" + url + "'>");
	document.write("<param name='wmode' value='" + t + "'>");
	document.write("<param name='quality' value='high'>");
	document.write("<embed src='" + url + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed></object>");
}

function view_flash2(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=6,0,29,0' width='" + width + "' height='" + height + "'>");
	document.write("<param name='movie' value='" + url + "'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<param name='quality' value='high'>");
	document.write("<embed src='" + url + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed></object>");

}
function fnHistoryOpen(){
	var History = window.open("http://localhost:8081/cybermuseum/", "History","width=1000,height=700");
	History.focus();
}
function fnDreamBrochure(){
	var Brochure = window.open("/brochure/e_brochure.html", "brochure","width=820,height=600");
	Brochure.focus();
}
function fnDreamBrochure_eng(){
	var Brochure = window.open("/eng/brochure/e_brochure.html", "brochure","width=820,height=600");
	Brochure.focus();
}
