// JavaScript Document
function openTest() {
if((screen.width>800) && (screen.height>600)){
			disp=window.open("test.html","disp","width=796, height=451, left="+(screen.width/2-398)+", top="+(screen.height/2-225)+", scrollbars=no, menubar=no, resazible=no");
		}
		else
		{
			disp=window.open("test.html","disp","width=796, height=451, left=0, top=75, scrollbars=no, menubar=no, resazible=no");
		}
		disp.focus();
	
}
function openWindow(w,h,adr,nam) {
	disp=window.open(adr,nam,"width="+w+", height="+h+", left="+((screen.width-w)/2)+", top="+((screen.height-h)/2)+", scrollbars=no, menubar=no, resazible=no");
	disp.focus();	
}
