/* $Id: script.js 20 2010-02-16 11:13:17Z arie $ */

function openwindow(x, y, url){
   var la = (screen.availWidth / 2) - (x / 2);
   var ta  = (screen.availHeight /2) - (y  / 2);
   var config = 'width='+x+',height='+y+',screenX='+la+',screenY='+ta+', top='+ta+',left='+la+', toolbar =no, resizing=no, status=no, location=no, menubar=no, scrollbars=no';
   var name=Math.round(1000*Math.random())
   name.toString();
   window.open(url, name, config);
}

function popup(value){
	window.open('/'+value,'','fullscreen=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=yes,titlebar=1');
}
function popup2(value){
	window.open(value,'','fullscreen=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=yes,titlebar=1');
}