var newWindow = null
var URL = null

function makeNewWindowP(URL) {
	newWindow = window.open(URL,"Window3","status,height=500,width=664,scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes,location=yes")
    newWindow.focus()
}

function makeNewWindowManager(URL) {
	newWindow = window.open(URL,"Window3","status,height=500,width=730,scrollbars=yes,menubar=no,toolbar=no,resizable=yes,location=no")
	newWindow.focus()
}

function makeNewWindowsmall(URL) {
	newWindow = window.open(URL,"Windowsmall","status,height=500,width=450,scrollbars=yes,resizable=yes")
	newWindow.focus()
}

function makeNewWindow(URL) {
	newWindow = window.open(URL,"Window2","status,width=664,height=500,status=no,toolbar=yes,location=no,menubar=no,scrollable=yes,scrollbars=1,scrolling=yes,resizable=no")
	newWindow.focus()
}

function makeNewWindowgal(URL) {
	newWindow = window.open(URL,"Window2","status,width=664,height=520,status=no,toolbar=yes,location=no,menubar=no,scrollable=yes,scrollbars=1,scrolling=yes,resizable=no")
	newWindow.focus()
}

function makeNewWindowpf(URL) {
	newWindow = window.open(URL,"Window2","status,width=664,height=500,status=yes,toolbar=yes,location=no,menubar=yes,scrollable=yes,scrollbars=1,scrolling=yes,resizable=no")
	newWindow.focus()
}

function makeNewWindowCal(URL) {
	newWindow = window.open(URL,"EventWindow","status,width=664,height=500,status=no,toolbar=no,location=no,menubar=no,scrollable=yes,scrollbars=1,scrolling=yes,resizable=no")
	newWindow.focus()
}

function makeNewWindow6(URL) {
	newWindow = window.open(URL,"Window6","status,height=420,width=610,scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes,location=yes,statusbar=yes")
	newWindow.focus()
}


function makeNewWindow4(URL) {
	newWindow = window.open(URL,"Window4","status,height=315,width=600,scrollbars=yes")
	newWindow.focus()
}

function makeNewWindowz(URL) {	
	newWindow = window.open(URL,"Window9","status,height=575,width=750,scrollbars=yes,menubar=yes,toolbar=yes,location=no,resizable=yes")
	newWindow.focus()
}

function makeNewWindow7(URL) {
	newWindow = window.open(URL,"Window7","status,height=555,width=700,scrollbars=yes,resizable=yes")
	newWindow.focus()
}
function closeWindow() {
        newWindow.close()
}
