<!--
// Ombudsman For The Defence Forces - COMMON JS FUNCTIONS

// Create Popup Window
var popwin;
function openWin(url) {
	popwin = window.open(url,'PrintFriendly','left=100,top=100,screenX=30,screenY=30,width=600,height=600,menubar=no,scrollbars=yes,resizable=yes');

	if (window.focus) {popwin.focus()}
}

// Create Drop Down Menu



//-->
