function ShortWindow(x,ww,wh){
  var sc="yes";
  if(x.substr(1,5)=="photo") sc="no";
  var l=(screen.width-ww)/2;
  var h=(screen.height-wh)/2;
  var a=window.open(x,"smallwindow","left="+l+",width="+ww+", height="+wh+",top="+h+", status=no, toolbar=no, menubar=no, resizable=yes, scrollbars="+sc);
  a.focus();
  return false;
}

function GetComments(p,t,id,nenado){
 $("#comments").load("/ajax/comments.php",{page:p,type:t,id:id});
 if(nenado==1){return false;}
 $("body").scrollTo(document.getElementById('ctop'),500);
 return false;
}
function AddComment(t){
 $("#addcmntlink").html('');
 $("#cmntfrm").load("/ajax/addcomments.php",{topic_id:t,topic_type:1});
 return false;
}

function AddComment2(t){
 $("#addcmntlink").html('');
 $("#cmntfrm").load("/ajax/addcomments.php",{topic_id:t,topic_type:3});
 return false;
}
function endPart(){
   $("#Autorize").load("/ajax/userlogin.php");;   
}

