function videoLink(){
	if(document.getElementById("videoLink")){
	document.getElementById("videoLink").innerHTML = '<img src="/ekmps/shops/projectmusic/resources/Design/video-demo.jpg" border="0">';
	}
}

function video(url){
	var html = '<div style="position:absolute;width:640px;height:400;padding:10px;left:50%;margin-left:-325px;top:' + (window.innerHeight/2) + 'px;margin-top:-185px;background-color:#ffffff;text-align:center;border:5px;border-style:solid;border-color:white;border-radius: 5px;-moz-border-radius: 5px;"><object width="640" height="360"><param name="movie" value="http://youtube.com/v/'+ url +'?version=3&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/v/'+ url +'?version=3&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" width="640" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object><br/><div align="right" onclick="closeVideo();" style="font-weight:bold;font-size:18px;color:#999999;margin-top:10px;cursor:pointer;">CLOSE</div></div>';
	document.getElementById("video").innerHTML = html;
	document.getElementById("video").setAttribute("class", "video-screen-visible");
}

function closeVideo(){
	document.getElementById("video").setAttribute("class", "video-screen-hidden");
	document.getElementById("video").innerHTML = "";
}
