
var newWindow=null
function win(dest, w, h){
	newWindow = window.open(dest,"newWindow","width=" + w + ",height=" + h + ",left=1,top=1,resizable=yes,menubar=yes,status=no,scrollbars=yes,toolbar=yes,location=yes");	
	}

var newWindow=null
function winNoSize(dest){
	newWindow = window.open(dest,"newWindow","left=20,top=20,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");	
	}
var newWindow=null
function newWin(dest){
	newWindow = window.open(dest,"newWindow","height=300,width=570,left=5,top=5,resizable=no,scrollbars=no");
	
	}

var newWindow=null
function win2(dest, w, h){
	newWindow = window.open(dest,"newWindow","width=" + w + ",height=" + h + ",left=40,top=40,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");	
	}

var newWindow=null
function reallyCenterWindow(dest, w, h) {
leftPos = 0
topPos = 0
if (screen) {
leftPos = (screen.width / 2) - (w/2)
topPos = (screen.height / 2) - (h/2)
}
newWindow = window.open(dest,"newWindow","width=" + w + ",height=" + h + ",left=" + leftPos +",top=" + topPos + ",resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");
  }