// JavaScript Functions

//Launches external website in new window

function popupExternal(url){	
open(url,"newwindow","scrollbars=yes,location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,status=yes,width=780,height=620");
}

//Launches PDF in new window

function popupPDF(url){	
open(url,"newwindow","scrollbars=yes,toolbar=no,directories=no,menubar=yes,resizable=yes,status=yes,width=550,height=500");
}	