function newwindow1(file) {
	newWindow = open(file,"newWindow","width=600,height=650,scrollbars=yes,resizable=yes");
newWindow.focus();
}

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


