function launch_embedded()
{	
	//** MANDATORY: Please fill in information based on your account.

	var wsa_serverurl = 'http://www.websitealive6.com';
	var wsa_groupid = 4674;
	var wsa_departmentid = 5389;
	var wsa_websiteid = 326;
	var wsa_loginname = 'Guest';

	if(document.getElementById('wsa_loginquestion') != null)
	{
		//--- If the text box exists, then pass along initial question.
		var wsa_loginquestion = document.getElementById('wsa_loginquestion').value;
	}
	else
	{
		//--- If the text box does not exists, then set the value to blank.
		var wsa_loginquestion = "";	
	}
	
	window.open(wsa_serverurl + '/'+wsa_groupid+'/rRouter.asp?groupid='+wsa_groupid+'&departmentid='+wsa_departmentid+'&websiteid='+wsa_websiteid+'&loginname='+wsa_loginname+'&loginquestion=' + wsa_loginquestion,'guest','width=450,height=400,resizable=1')
}