function openMovie(sSRC)
{
	var url="/videoplayer/movieplayer.aspx?movie=";
	url=url+sSRC+".swf";
	url=url+"&random="+Math.random();
	openWindow(url, "VideoViewer" , 640, 530);
	
}	

function openMovie1(sSRC)
{
	var url="/videoplayer/movieplayer1.aspx?movie=";
	url=url+sSRC+".swf";
	url=url+"&random="+Math.random();
	openWindow(url, "VideoViewer" , 320, 300);
}

function openWindow(spath, stitle,lngWidth, lngHeight)
{
	var height = screen.height;
	var width = screen.width;
	var leftpos = width / 2 - (lngWidth/2);
	var toppos = height / 2 - (lngHeight/2);		
	window.open(spath, stitle , "status=no,menubar=no,location=no,scrollbars=no,personalbar=no,titlebar=no,height=" + lngHeight + ",width=" + lngWidth + ",left="+leftpos + ", top=" + toppos + ";" );	
}

function openWindowWithScroll(spath, stitle,lngWidth, lngHeight)
{
	var height = screen.height;
	var width = screen.width;
	var leftpos = width / 2 - (lngWidth/2);
	var toppos = height / 2 - (lngHeight/2);
	window.open(spath, stitle, "status=no,menubar=no,location=no,scrollbars=yes,personalbar=no,titlebar=no,height=" + lngHeight + ",width=" + lngWidth + ",left=" + leftpos + ", top=" + toppos + ";");	
}

function openPicture(sPicture)
{
    var url = "/setcards/default.aspx?setcardfile=" + sPicture;
	url=url+"?random="+Math.random();
	openWindow(url, "Picture" , 900, 634);
}

function PlayandLyrics(id) {
    var url = "/playmusic.aspx?id=" + id;
    url = url + "&random=" + Math.random();
    openWindow(url, "Music", 900, 700);
}

