var my_window;
function newWindow(win,text,w,h)
{
	a = screen.width;
 	b = screen.availHeight;

	my_window = window.open("",text,"height="+h+",width="+w);

         my_window.moveTo((a-w)/2,(b-h)/2);

         my_window.location.href = win;
}