function popup(url) {
	newwindow = window.open(url,'NewWin','left=0, top=0, height=286, width=350, toolbar=no, menubar=no, scrollbars=no, resizable=no');
	if (window.focus) newwindow.focus();
}

function flash_print(filepath, width, height) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" border="0" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln('<param name="movie" value="' + filepath + '" />');
	document.writeln('<param name="quality" value="High" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<embed src="' + filepath + '" style="display: block;" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj3" quality="High" width="' + width + '" height="' + height + '" />');
	document.writeln('</object>');
}

function video_print(filepath, width, height) {
	document.writeln('<object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="fileName" value="' + filepath + '" />');
	document.writeln('<param name="autoStart" value="true" />');
	document.writeln('<param name="showControls" value="true" />');
	document.writeln('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + filepath + '" name="MediaPlayer1" width="' + width + '" height="' + height + '" autostart="1" showcontrols="1" />');
	document.writeln('</object>');
}