
var sample=null
function win(dest){
	newWindow = window.open(dest,"newWindow","width=790,height= 530,left=1,top=1,resizable=yes,menubar=yes,status=no,scrollbars=yes,toolbar=no,location=no");	
	}

var sample=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");	
	}

function newWin(dest){
	newWindow = window.open(dest,"newWindow","height=300,width=500,left=40,top=40,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");
	
	}
	
	function newWinscroll(dest){
	newWindow = window.open(dest,"newWindow","height=500,width=780,left=20,top=20,resizable=yes,scrollbars=yes");
	
	}
	
function winStuff(dest){
	newWindow = window.open(dest,"newWindow","height=460,width=780,left=10,top=10,resizable=yes,menubar=yes,status=yes,scrollbars=yes,toolbar=yes,location=yes");
	
	}
	
var sample=null
function win2(dest, w, h){
	newWindow = window.open(dest,"newWindow","width=" + w + ",height=" + h + ",left=1,top=1,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no,location=no");	
	}


