/**
 * JavaScript for Web
 * 
 * (C) 2007 VERSION2 INC.
 */
if ( typeof(V2) == 'undefined' ) V2 = function() {};
V2.prototype = {
	putSwf:function(src,id,w,h) {
		var html;
		html = '<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="'+id+'" align="top">';
		html += '<param name="allowScriptAccess" value="sameDomain" />';
		html += '<param name="movie" value="'+src+'" />';
		html += '<param name="quality" value="high" />';
		html += '<embed id="'+id+'" src="'+src+'" quality="high" width="'+w+'" height="'+h+'" name="'+id+'" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
		html += '</object>';
		document.write(html);
	}
}
var v2 = new V2();
