function pdfPopup(url) {
	popupWindow = window.open('/docs/' + url,"pdfPopup","width=800,height=600,menubar=no,toolbar=no,status=yes,resizable=yes,location=no,scrollbars=yes");
	popupWindow.focus();
}

function externalPopup(url) {
	popupWindow = window.open(url,"externalPopup","width=800,height=600,menubar=yes,toolbar=yes,status=yes,resizable=yes,location=no,scrollbars=yes");
	popupWindow.focus();
}

