// Window opener

function NewWindow(url,w,h) {
	newWindow = window.open(url,'search','width='+w+',height='+h+',top='+(screen.height-h)/2+',left='+(screen.width-w)/2+',titlebar=0,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0');
}
