// JavaScript Document
Home = "HOME";
blank = " ";
leftPos = 0;
	winWidth = 0;
	heightPos = 0;
	winHeight = 0;

function newWindow(pic,win) {
	
	if (screen) {
		winWidth = screen.width*0.8;
		leftPos = (screen.width/2) - (winWidth/2);
		winHeight = screen.height*0.8;
		heightPos = (screen.height/2) - (winHeight/2) - 20;
		}
		picWindow = window.open(pic, win, 'width='+winWidth+', height='+winHeight+', left='+leftPos+', top='+heightPos+', scrollbars=yes, menubar=yes, resizable=yes')
		
	}

	

		