/*New windows*/
function newSiteWindow(url) {
siteWindow = window.open(url,"siteWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=900,height=450")
}
function newPartWindow(url) {
partWindow = window.open(url,"partWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=475,height=515")
}
function newPDFWindow(url) {
partWindow = window.open(url,"PDFWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=350")
}
