/** 
 * showTablePreview
 *
 * 20090609-wiener: showTablePreview
 *
 */


function spt_showTablePreview(divid){
	
	  var wr = $("#wrapper").height();
	  $("#showpreviewtablebkg").height(wr);

	  $("#showpreviewtablebkg").show();
	  	  
	  $("#showpreviewtable").html($("#"+divid).html());
	  $("#showpreviewtable").slideDown();
	  $("#showpreviewtableclose").show();
	  
	  $("#showpreviewtableclose").click(function () { 
        spt_hide_popup(); 
      });
}    

function spt_hide_popup(){
    $("#showpreviewtable").slideUp();
    $("#showpreviewtableclose").hide();
    $("#showpreviewtablebkg").hide(); 
}


