function showPopup(url,name,width,height){	var sWidth = screen.availWidth;  	var sHeight = screen.availHeight;	newwindow=window.open(url,name,'height='+height+',width='+width+',left='+((sWidth-width)/2)+',top='+((sHeight-height)/2)+',scrollbars=yes,resizable=yes');	if (window.focus)             newwindow.focus();	return false;}function EditBoxDimension(node){    var parent = node.parent();    node.css({        backgroundColor:"#000000",        display:"block",        width:parent.width()+"px",        height:parent.height()+"px"    });}$(function(){    $("table.data tr").mouseover(function(){ $(this).addClass('hover');});    $("table.data tr").mouseout(function(){ $(this).removeClass('hover');});    $("#show_pl, #show_en").click(function(){ $(".l_"+this.lang).css("display", this.checked ? "" : "none"); });})
