function player(lnk,videourl)
{
	var url = "Upload/videos/video.html?video="+videourl; 
	var targetName = 'video_'+(new Date()).getTime();			
	lnk.target = targetName
	lnk.href = url;

	var width=488;
	var height=365;
	var    xposition=0;     
	var    yposition=0;   
	if    ((parseInt(navigator.appVersion)    >=    4    ))   
       	{   
          xposition    =    (screen.width    -    width)    /    2;   
          yposition    =    (screen.height    -    height-25)    /    2;   
        }   


	window.open(''+url+'',''+targetName+'','height='+height+',width='+width+',left='+xposition+',top='+yposition+',location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,titlebar=no,toolbar=no,directories=no,resizable=no');
}


function photoview(lnk,photourl,serialno)
{
	var url = "Upload/photo.html?photo="+photourl+"&serialno="+serialno; 
	var targetName = 'video_'+(new Date()).getTime();			
	lnk.target = targetName
	lnk.href = url;

	var width=window.screen.width-10;
	var height=window.screen.height-80;
	
	window.open(''+url+'',''+targetName+'','width='+width+',height='+height+',top=0,left=0,location=no,menubar=no,resizable=no,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no,resizable=no');
}
