	var openVideo = function(id,source,content_type,width,height,overlayer,top_pos,left_pos,new_but,add_close)
	{
		modalWindow.windowId = id;
		modalWindow.width = width;
		modalWindow.height = height;
		modalWindow.overlayer = overlayer;
		modalWindow.top_pos = top_pos;
		modalWindow.left_pos = left_pos;
		modalWindow.new_but = new_but;
		modalWindow.add_close = add_close;
		
		if(content_type=='iframe'){
			modalWindow.content = "<iframe width='690' height='445' frameborder='0' scrolling='auto' src='" + source + "'></iframe>";
		}else if(content_type=='text'){
			modalWindow.content = source;
		}
		modalWindow.open();
	};

$(function() {
	$("#load_video").click(function() {
		openVideo('video','pagina_video.html',type='iframe',620,425,overlayer=1,100,100,new_but='',add_close=1)		
	});
});
