
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=1,top=1,resizable=yes,menubar=yes,status=no,scrollbars=yes,toolbar=yes,location=yes");	
	}
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=30,top=30,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");	
	}
