function open_video(width,height,url)
{
	var winl = (screen.width-width)/2;
	var wint = (screen.height-height)/2;
	var settings = "width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top="+wint+",left="+winl;
	var win_video = window.open(url,"Beautiful_life_video_"+width+"_"+height+"",settings);
	win_video.window.focus();
}
