//Popup Window Script

//Used to display PDF files in new windows throughout the site
function openpopup(popurl){
winpops=window.open(popurl,"","fullscreen=no,top=0,left=0,toolbar=no,location=no,directories,status=no,scrollbars,menubar=no,resizable,")
}

//Used to show course description from the course search app
function openpopupDesc(popurl){
winpops=window.open(popurl,"","width=800,height=500,top=0,left=0,toolbar=no,location=no,directories,status=no,scrollbars,menubar=no,resizable,")
}

//Used to open news/event items in a new window when the title links are clicked
function openpopupEvent(popurl){
winpops=window.open(popurl,"","width=750,height=600,top=0,left=0,toolbar=no,location=no,directories,status=no,scrollbars,menubar=no,resizable,")
}
