function show_embed_video(embed_div) {
	if (document.getElementById("video_url")) {
		//var video_url="http://www.unitedrooms.tv/0078/0078_000001_8100022.wmv";
		var video_url=document.getElementById("video_url").innerHTML;
	}
	object = '<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="320" height="280" ';
	object += 'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ';
	object += 'id="WinMediPlay" type="application/x-oleobject">';
	object += '<param name="src" value="' + video_url + '" />';
	object += '<param name="autoStart" value="false" />';
	object += '<param name="showControls" value="true" />';
	object += '<embed type="video/x-ms-asf-plugin" ';
	object += 'pluginspace="http://www.microsoft.com/windows95/downloads/contents/wurecommended/s_wufeatured/mediaplayer/default.asp" ';
	object += 'src="' + video_url + '" name="mediaplayer" showcontrols=2 showdisplay=0 showstatusbar=0 autostart=0 width="320" height="280"></embed>';
	object += '</object>';
	embed_div.innerHTML = object;
	embed_div.onclick = function(){ 
		return;
	};
}

function gs() {
//	MM_preloadImages('images/navi/network_over.jpg','images/navi/sevice_over.jpg','images/navi/contact_over.jpg','images/navi/about_over.jpg','images/navi/btn1_over.gif','images/navi/btn2_over.gif','images/navi/btn3_over.gif','images/navi/btn4_over.gif','images/navi/btn5_over.gif','images/home/samplemovie3_on.gif','images/home/cellphone3_on.gif');
	if(document.getElementById("embed_video")) {
		document.getElementById("embed_video").style.cursor = 'pointer';
		document.getElementById("embed_video").onclick = function(){ 
			return show_embed_video(this);
		};
	}
}

window.onload = function() {
	gs();
};

