
function popUp(page,wideness,tallness) {
	poppedWin = window.open(page, 'page', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+wideness+',height='+tallness+',left = 440,top = 312');
	poppedWin.focus();
}

function popUpNormal(page,wideness,tallness) {
	normalWin = window.open(page, 'bigwindow', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width='+wideness+',height='+tallness+',left = 80,top = 30');
	normalWin.focus();
}

function maximizeSelf() {
	window.moveTo(0,0);
	window.resizeTo(screen.width,screen.height);
  }




