// src = swf location
// w = width
// h = height
// bg = bgcolor
function view_swf(src, w, h, bg) {
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + w + "' height='" + h + "' id='swf_top' align='middle'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='" + src + "' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='bgcolor' value='" + bg + "' />");
	document.write("<embed src='" + src + "' quality='high' bgcolor='" + bg + "' width='" + w + "' height='" + h + "' name='swf_top' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
}

function view_swf_trans(src, w, h) {
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + w + "' height='" + h + "' id='swf_top' align='middle'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='" + src + "' />");
	document.write("<param name='quality' value='high' />");
	document.write("<PARAM NAME=wmode value=transparent>");
	document.write("<embed src='" + src + "' quality='high' width='" + w + "' height='" + h + "' name='swf_top' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
}

function play_ebook() {
	var targetURL="ebook/amozen.html"
	newFlWin1=window.open("","","width="+screen.width+",hegiht="+screen.height+",menubar=no,toolbar=no,directories=no,location=no,status=yes,scrollbars=1,resizable=no,copyhistory=no");
	if (document.all){
		newFlWin1.moveTo(0,0);
		newFlWin1.resizeTo(screen.width,screen.height);
	}
	newFlWin1.location=targetURL;
}
	

