// JavaScript Document
function showContent(contentName,linkName){
  document.getElementById(contentName).style.display = "";
  document.getElementById(linkName).style.display = "none";
}

function openApplication(product) {
	if (screen.height && screen.width) {
		height = screen.height - 80;
	} else {
		height = 520;
	}

	if (product == "lowrate") {
		var theURL = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=lowrate" }

	if (product == "source") {
		var theURL = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=source" }

	if (product == "myer") {
		var theURL = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=myer" }	

	if (product == "eco") {
		var theURL = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=eco" }

	if (product == "wizard") {
		var theURL = "https://apply.wizard.com.au/eapps/Apply.faces?cardType=wizard" }

	if (product == "go") {
		var theURL = "https://apply.gomastercard.com.au/eapps/ApplyRetail.faces?cardType=go" }

	var width = "622";
	var screenY = screen.height;
	var screenX = screen.width;
	var topvar = 0;
	var leftvar = (screenX - width) / 2;
 	window.open(theURL,'','resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,top='+topvar+',left='+leftvar+',width='+width+',height='+height+'');
}
