<!--
function launchApplication() {
	
	
	if (screen.height && screen.width) {
		windowHeight = screen.height - 80;
	} else {
		windowHeight = 520;
	}

	var URL = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=source";
	var windowName = "eApplication";
	var windowFeatures = "width=600,height=" + windowHeight + "toolbar=no,scrollbars=yes,location=no,statusbar=yes,status=yes,menubar=no,resizable=no,resize=no";
	
	window.open(URL,windowName,windowFeatures);
	
}
//-->


