function newwindow(file) {
	newWindow = open(file,"newWindow","width=350,height=400,top=5,left=50,scrollbars=auto,resizable=yes");
newWindow.focus();
}

function newwindow2(file) {
	newWindow = open(file,"newWindow","width=500,height=600,top=5,left=50,scrollbars=auto,resizable=yes");
newWindow.focus();
}

function newwindow3(file) {
	newWindow = open(file,"newWindow","width=600,height=600,top=5,left=50,scrollbars=auto,resizable=yes");
newWindow.focus();
}