/*
http://www.codingforums.com/archive/index.php/t-74915.html
*/

function valueFocus(e,d) {
if(e.value == d) e.value = '';
}
function valueBlur(e,d) {
if(e.value == '') e.value = d;
}

function playWMVVideo(wmvTitle,ref,divID){

	str='<div class="wmvTitle">'+wmvTitle+'</div><object id="player" classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'
	+'type="application/x-oleobject" height="400" width="400">'
	+'<param name="filename" value="'+ref+'">'
	+'<param name="autostart" value="true">'
	+'<embed type="application/x-mplayer2" height="400" width="400"'
	+'filename="'+ref+'" autostart="false"><\/embed>'
	+'<\/object><br/>'
	+'<a href="'+ref+'" title="Abrir v&iacute;deo noutro programa" target="_blank">Abrir v&iacute;deo noutro programa</a>';

	document.getElementById(divID).innerHTML=str;
	
	document.location = "videos.php#home";

}
