function newwindow1(file) {
	newWindow = open(file,"newWindow","width=300,height=400,top=100,left=100,scrollbars=auto,resizable=yes");
newWindow.focus();
}

function newwindow2(file) {
	newWindow = open(file,"newWindow","width=450,height=500,top=100,left=100,scrollbars=auto,resizable=yes");
newWindow.focus();
}

