function openApplication(product) {
	var url = "";
	var width = "622";
	var screenY = screen.height;
	var screenX = screen.width;
	var topvar = 0;
	var leftvar = (screenX - width) / 2;
	
	if (screen.height && screen.width) {
		height = screen.height - 80;
	} else {
		height = 520;
	}
	
	switch(product) {
		case "lowrate":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=lowrate";
		break;
	    case "source":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=source";
		break;
		case  "myercard":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=myer"; 
		break;
		case "myervisa":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=myervisa";
		break;
		case "eco":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=eco"; 
		break;
		case "wizard":
			url = "https://apply.gemoney.com.au/eapps/Apply.faces?cardType=wizard";
		break;
		case "go":
			url = "https://apply.gomastercard.com.au/eapps/ApplyRetail.faces?cardType=go&merchant=ge";
		break;
		case "gobusiness":
			url = "https://apply.gomastercard.com.au/eapps/ApplyRetail.faces?cardType=gobusiness&merchant=ge"; 
		break;
		case "carecredit":
			url = "https://apply.gemoney.com.au/eapps/ApplyRetail.faces?cardType=carecredit";
		break;
		case "creditline":
			url = "https://apply.interestfree.com.au/eapps/ApplyRetail.faces?cardType=creditline";
		break;
		default:
		break;
	}
	var appWin = window.open(url,'','resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,top='+topvar+',left='+leftvar+',width='+width+',height='+height+'');
	if(window.focus) {
		appWin.focus();
	}
	
}


function openPopup(pageName) {
	
	var url = "";
	var width = "800";
	var screenY = screen.height;
	var screenX = screen.width;
	var topvar = 0;
	var leftvar = (screenX - width) / 2;
	
	if (screen.height && screen.width) {
		height = screen.height - 80;
	} else {
		height = 520;
	}
		
	switch(pageName){
		case "tellafriend":
			url = "https://eform.gemoney.com.au/eform/Page.do?eFormName=gemoneyau_eco_tellfriend_eco";
		break;
		case "treetellafriend":
			url = "https://eform.gemoney.com.au/eform/Page.do?eFormName=gemoneyau_eco_tellfriend_tree";
		break;
		case "treeform":
			url = "https://eform.gemoney.com.au/eform/Page.do?eFormName=gemoneyau_eco_registration"; 
		break;
		default:
		break;
	}
	
 	var popWin = window.open(url,'','resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,top='+topvar+',left='+leftvar+',width='+width+',height='+height+'');
	if (window.focus) {
		popWin.focus();
	}
	
}
