	function showDemo(demoSource, demoTitle, demoWidth, demoHeight) {
	
		var w = screen.availWidth;
		var h = screen.availHeight;
		
		var dWidth = demoWidth;
		var dHeight = demoHeight;
		var leftPos = (w-dWidth)/2;
		var topPos = (h-dHeight)/2;
	
		showDemoWindow = window.open("", "", "width=" + dWidth + ", height=" + dHeight + ", scrollbars=0, top=" + topPos + ", left=" + leftPos + "\"");
		
		showDemoWindow.document.write("<html><head><title>" + demoTitle + "</title><style type=\"text/css\">* {margin:0; padding:0; border:0;}</style></head><body>");
		showDemoWindow.document.write("<div align=\"center\">");
		showDemoWindow.document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"" + demoWidth + "\" height=\"" + demoHeight + "\" id=\"FlashDemo\" align=\"middle\">");
		showDemoWindow.document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
		showDemoWindow.document.write("<param name=\"movie\" value=\"" + demoSource + "\" />");
		showDemoWindow.document.write("<param name=\"quality\" value=\"high\" />");
		showDemoWindow.document.write("<param name=\"scale\" value=\"exactfit\" />");
		showDemoWindow.document.write("<param name=\"bgcolor\" value=\"#ffffff\" />");
		showDemoWindow.document.write("<embed src=\"" + demoSource + "\" quality=\"high\" scale=\"exactfit\" bgcolor=\"#ffffff\" width=\"" + demoWidth + "\" height=\"" + demoHeight + "\" name=\"FlashDemo\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
		showDemoWindow.document.write("</object>");
		showDemoWindow.document.write("</div>");
		showDemoWindow.document.write("</body></html>");
		showDemoWindow.document.close();
	}
