// JavaScript Document


/////////////////////////popup window relevant only/////////////////////////////////////////

var iWidth = (window.screen.width/2) - (210);
var iHeight = (window.screen.height/2) - (275);



function popPrivacy(){
	var myWindow = window.open('_privacy.html','newWin','width=420,height=550,left='+ iWidth + ',top=' + iHeight + ', screenX=' + iWidth + ',screenY=' + iHeight + ', toolbar=No,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
	myWindow.focus();
}

function popContact(){
	var myWindow = window.open('_contact_us.html','newWin2','width=360,height=345,left='+ iWidth + ',top=' + iHeight + ', screenX=' + iWidth + ',screenY=' + iHeight + ', toolbar=No,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
	myWindow.focus();
}

function popInfo(){
	var wWidth = (window.screen.width/2) - (330);
	var wHeight = (window.screen.height/2) - (275);
	
	var myWindow = window.open('http://www.macquarie.com.au/au/important_information.htm','newWin','width=660,height=550,left='+ wWidth + ',top=' + wHeight + ', screenX=' + wWidth + ',screenY=' + wHeight + ', toolbar=No,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
	myWindow.focus();
}


