		function popup(name,path,w,h) { //popup 360 (scrollbars no)
			leftPos = 0
			topPos = 0
			if (screen) {//center popup on screen
				leftPos = (screen.width / 2) - w/2
				topPos = (screen.height / 2) - h/2
			}				
			name = window.open (''+path+'','mywindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+w+',height='+h+',left='+leftPos+',top='+topPos+'');
			name.resizeTo(w,h);
			name.moveTo((screen.width / 2) - w/2,(screen.height / 2) - h/2);
			name.focus();
		}

