var thisplayer;
//###############################
function createPlayer(theFile, theImg, w, h, id) {
	var s1 = new SWFObject("../../player/player.swf",'swfplayer',w,h,"7");
	s1.addParam("allowfullscreen", "true");
	s1.addVariable("file", theFile);
	s1.addVariable("width", "0");
	s1.addVariable("height", "0");
	s1.addVariable("stretching", "none");
//	s1.addVariable("displaywidth", "320");
//	s1.addVariable("displayheight", "221");
//	if (start) 
	s1.addVariable("autostart", "true");
//	if (! icons) s1.addVariable("showicons", "false");
	if (theImg != "") s1.addVariable("image", theImg);
	s1.write(id);
}

//###############################
function endplay(obj) {
	if(obj.newstate == 'COMPLETED') {
		tb_remove();
	}
}

//###############################
function playerReady(obj) {
	var id = obj['id'];
	var version = obj['version'];
	var client = obj['client'];
//	alert('the videoplayer '+id+' has been instantiated');
	thisplayer = document.getElementById(id);
	thisplayer.addModelListener("STATE","endplay");
}

//###############################
function play(p1, p2, w, h, id) {
	$('#moviesinvisible').html('');
	$('#playerid').html('');
	if(p1.indexOf('.mp3')>-1 || p1.indexOf('.flv')>-1) {
		flashversion = deconcept.SWFObjectUtil.getPlayerVersion().major;
		if(flashversion >5) {
			createPlayer(p1, p2, w, h, id);
		}
		else {
			if(p1.indexOf('.flv')>-1) {
				$('#'+id).html('<p style="margin:150px 20px; font-size:11pt; text-align:center;"><a href='+T.flash_url+' target=_blank style="color:black;"><img src=http://wwwimages.adobe.com/www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg border=0><br>'+T.noflash+'</a></p>');
			}
			else {
				$('#'+id).html('<p style="margin:0px 20px; font-size:11pt; text-align:center;"><a href='+T.flash_url+' target=_blank style="color:black;"><img src=http://wwwimages.adobe.com/www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg border=0><br>'+T.noflash_audio+'</a></p>');
			}
		}
		if(id=='moviesinvisible') {
			tb_show('Narayana Video', '#TB_inline?height='+h+'&width='+w+'&inlineId=moviesinvisible', false);
			$('#TB_ajaxContent').css('overflow', 'hidden');
		}
	}
	else if(p1.indexOf('.pdf')>-1 || p1.indexOf('.doc')>-1) {
		window.open(p1);
	}
	else {
		document.location = p1;
	}
}

