function changeVid(videoID, destinationName) {
	var params = {};
	params.allowFullScreen = "true";
	params.wmode = "transparent";
	params.AllowScriptAccess = "always";
	swfobject.embedSWF("http://applications.fliqz.com/" + videoID +  ".swf",destinationName,"480","360","9.0.115","expressInstall.swf",{},params);
}

var vSign=0
function playVideo(videoID){
	vSign=vSign+ 1;
	var boxWidth,boxHeight,borderColor;
	boxWidth=482;//msg width
	boxHeight=390;//msg height
	titleheight=29 //msg title height
	borderColor="#007de3";//
	titleColor="#0155A6";//
	
	var document_body=document.compatMode=='CSS1Compat'?document.documentElement:document.body;
	var top=((window.pageYOffset?window.pageYOffset:document_body.scrollTop)+document_body.clientHeight-boxHeight*1.5-4)+"px";

	var msgBG = vSign== 1 ? document.createElement("div") : document.getElementById("msgBG")
	msgBG.setAttribute("id","msgBG");
	msgBG.setAttribute("align","center");
	msgBG.style.background="#000";
	msgBG.style.padding="0";
	msgBG.style.position = "absolute";
	msgBG.style.left = ((screen.width-boxWidth) /2)+"px";
	msgBG.style.top = top; 
	msgBG.style.width = (boxWidth) + "px";
	msgBG.style.height = (boxHeight) + "px";
	msgBG.style.textAlign = "center";
	msgBG.style.lineHeight ="29px";
	msgBG.style.zIndex = "10001";

	var msgObj = vSign== 1 ? document.createElement("div") : document.getElementById("msgDiv")
	msgObj.setAttribute("id","msgDiv");
	msgObj.setAttribute("align","center");
	msgObj.style.background="white";
	msgObj.style.border="1px solid " + borderColor;
	msgObj.style.width = (boxWidth-2) + "px";
	msgObj.style.height =(boxHeight-1) + "px";
	msgObj.style.textAlign = "center";
	
	var title = vSign== 1 ? document.createElement("h4") : document.getElementById("msgTitle")
	title.style.cssText="color:#fff; font-size:13px; font-family:Arial, Helvetica, sans-serif; font-weight:700; height: 29px; padding:0; margin:0; background:"+borderColor+" url(/images/common/title_bg.jpg) repeat-x ; ";
	title.setAttribute("id","msgTitle");
	title.setAttribute("align","left");
	title.style.filter="progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, finishX=100, finishY=100,style=1,opacity=75,finishOpacity=100);";
	title.style.opacity="0.75";

	var spanLeft = vSign== 1 ? document.createElement("span") : document.getElementById("spanLeft")
	spanLeft.setAttribute("id","spanLeft");
	spanLeft.style.cssText="width:70%;float:left; padding-left:8px;";
	spanLeft.innerHTML="Toptenwholesale Video Player";
	var spanRight;

	var spanRight = vSign== 1 ? document.createElement("span") : document.getElementById("spanRight")
	spanRight.setAttribute("id","spanRight");
	spanRight.style.cssText="width:10%;float:right; text-align:right; padding-right:8px; cursor:pointer; ";
	spanRight.innerHTML="<img src='/images/common/close.jpg' title='Close'/>";
	title.appendChild(spanLeft);
	title.appendChild(spanRight);
	spanRight.onclick=function(){
//		document.body.removeChild(bgDiv);
		msgObj.removeChild(title);
		msgBG.removeChild(msgObj);
		document.body.removeChild(msgBG);
		vSign=0;
	}
	document.body.appendChild(msgBG);
	msgBG.appendChild(msgObj);
	msgObj.appendChild(title);
	
	var video = vSign== 1 ? document.createElement("div") : document.getElementById("videoPlayer")
	video.style.cssText="margin:0; padding:0px;";
	video.setAttribute("id","videoPlayer");
	video.setAttribute("align","left");
	video.style.textAlign="center";
	msgObj.appendChild(video);
	changeVid(videoID, 'videoPlayer');
}

