function insert_ajax_div(element) {$('<div id="lightbox" />').appendTo(element)}
function close_watch_now() {$(".watch_vdo").remove();$("#lightbox").hide();}
function update_position(player_width,player_height) { var Conheight =	$(window).height(); var ConWidth = $(window).width(); $("#lightbox").css({"position" : "fixed","left" : ConWidth / 2 - player_width / 2,"top" : Conheight / 2 - player_height / 2});}
function centerDiv(player_width,player_height) {$(window).bind("load",function() {update_position(player_width,player_height);});$(window).bind("resize",function() {update_position(player_width,player_height);});}
function watch_now(vid,div) {var page = baseurl + "/watch_now_ajax.php"; $(div).css("display","block"); $(div).html(loading); $.post(page, {vid : vid},function(data) {$(div).html(data);},'text');}
