// Changes by RLW to display a popup window for survey
//
//Sets popup window configuration options. Height, width, toolbars...
var popUpWindow = "height=500,width=440,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=auto,status=0,toolbar=0,screenY=300,left=300,top=100";

function popUp(URL) 
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=510,height=310');");
}

function popUpPage(URL) 
{
day = new Date();
id = day.getTime();
eval("Matt = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=485,height=500'); Matt.focus();");
Matt.focus();
}

function USpopUpPage(URL) 
{
	var height;
	var width;
	height = (screen.height);
	width = (screen.width-7);
	day = new Date();
	id = day.getTime();
	eval("Terry = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,height="+height+",width="+width+",top=0,left=0'); Terry.focus();");
	Terry.focus();
}

// end Survey popup changes



function SelectLanguage(value)
{
	switch (value.toString()){
		case '1':
				//javascript:popUp('/Sia/PopUpAustralia.aspx?lan=en&');  // display the English version of the survery popup
				//window.open('http://invite.insightexpress.com/InviteServer/2/Invite.aspx?surveyID=98575&Site=AUS2');
				//javascript:popUp('http://invite.insightexpress.com/InviteServer/2/Invite.aspx?surveyID=98575&Site=AUS2');
			document.location = 'Sia/en/index.asp';
			break;
			
		case '2':
			//javascript:popUpPage('/Sia/zh/PopupSurvey?lang=zh&')
			document.location = 'Sia/zh/Home.asp';
			break;
		case '3':
			//javascript:popUpPage('/Sia/ja/PopupSurvey?lang=ja&') 
			document.location = 'Sia/ja/Home.htm';
			break;
		case '4':
			//javascript:popUpPage('/Sia/id/PopupSurvey?lang=id&')
			document.location = '/Sia/id/Home.htm';
			break;
		case '5':
			//javascript:popUpPage('/Sia/th/PopupSurvey?lang=th&')
			document.location = '/Sia/th/Home.htm';
			break;
		case '6':
			//javascript:popUp('http://www.i-link.com.au/projects/Q700/popup.php?lang=es');  // display the Spanish version of the survery popup
			//javascript:popUpPage('/Sia/es/PopupSurvey?lang=es&')
			document.location = '/Sia/es/Home.htm';
			break;
		case '7':
			//javascript:popUpPage('/Sia/ko/PopupSurvey?lang=ko&')
			document.location = '/Sia/ko/Home.htm';
			break;
		case '8':
			window.open('http://www.study-in-australia.org/index.php');
			break;
		case '9':
			//javascript:popUpPage('/Sia/zz/PopupSurvey?lang=zz&')
			document.location = '/Sia/zz/Home.htm';
			break;
		case '10':
			//javascript:popUpPage('/Sia/vi/PopupSurvey?lang=vi&')
			document.location = '/Sia/vi/Home.htm';
			break;
		case '11':
			//javascript:popUp('http://www.i-link.com.au/projects/Q700/popup.php?lang=po');  // display the Portuguese version of the survery popup
			//javascript:popUpPage('/Sia/pt/PopupSurvey?lang=pt&')
			document.location = '/Sia/pt/Home.htm';
			break;
		case '12':
			//javascript:popUpPage('/Sia/ar/PopupSurvey?lang=ar&');
            document.location = '/Sia/ar/Home.htm';
			break;
		case '13':
			//javascript:popUpPage('/Sia/ru/PopupSurvey?lang=ru&')
			document.location = '/Sia/ru/Home.htm';
			break;
		case '14':
			//javascript:popUpPage('/Sia/en/PopupSurvey?lang=en&')
			//document.location = '/Sia/en/Home.htm';
			javascript:USpopUpPage('/Sia/en/Help/NorthAmerica/home.htm');
			//javascript:popUp('/Sia/PopUpAustraliaNorthAmerica.aspx?lan=en&');
			//window.open('http://www.aeo.us');
			break;
		default: 
			//javascript:popUpPage('/Sia/en/PopupSurvey?lang=en&')
			document.location = '/Sia/zh/index.asp';
			break;
	}
}

