var width_margin= 100;
var height_margin= 100;

function getWindowWidth() {
	// alert(window.screen.width - (width_margin * 2));
	document.write(window.screen.width - (width_margin * 2));
}

function getWindowHeght(){
	// alert(window.screen.height - (height_margin * 2));
	document.write(window.screen.height - (height_margin * 2));
}

function generateFlash(swf_file, ojd_id){
	my_width  = screen.width - (width_margin * 2);
	my_height = screen.height - (height_margin * 2);
	my_width  = my_width + "";
	my_height = my_height + "";
	document.write("<center>");
	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='"+my_width+"' height='"+my_height+"' id='"+ojd_id+"' align='middle'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='"+swf_file+"' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='bgcolor' value='#ffffff' />");
	document.write("<param name='flashvars' value='xml_file=' />");
	document.write("<embed src='"+swf_file+"' quality='high' bgcolor='#ffffff' width='"+my_width+"' height='"+my_height+"' name='"+ojd_id+"' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
	document.write("</center>");	
} 

function generateFlashXML(swf_file, ojd_id, xml_file){
	my_width  = screen.width - (width_margin * 2);
	my_height = screen.height - (height_margin * 2);
	my_width  = my_width + "";
	my_height = my_height + "";
	document.write("<center>");
	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='"+my_width+"' height='"+my_height+"' id='"+ojd_id+"' align='middle'>");
	document.write("<param name='allowScriptAccess' value='sameDomain' />");
	document.write("<param name='movie' value='"+swf_file+"' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='bgcolor' value='#ffffff' />");
	document.write("<param name='flashvars' value='xml_file=../xml/"+xml_file+"' />");
	document.write("<embed src='"+swf_file+"' quality='high' bgcolor='#ffffff' width='"+my_width+"' height='"+my_height+"' name='"+ojd_id+"' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' flashvars='xml_file=../xml/"+xml_file+"' />");
	document.write("</object>");
	document.write("</center>");	
} 