//##############################################
function popup(url, name, width, height) {
   winSet = "toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,status=no";
   winSet += ",width="+width +",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
   mypopwnd = window.open(url, name, winSet);
   mypopwnd.focus();
  }
//#############################################
function popdown() {
	try { 
		mypopwnd.close(); 
	} catch (e) {} 
}
//#############################################
 function opencommentwindow(theData) {
 remote = window.open(theData,"GameReview","toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,width=850,height=500");
  remote.focus();
 }
