 
//Javascript callback when different view is selected
function ozOnViewChanged(view)
{
	/*
	var ele = document.getElementById("oz_callback");
	if (view=="selector") ele.innerHTML="<b>Welcome to the Octazen Demo for the PHP Invite Component!</b><br/><br/> This yellow box is updated through a callback that you may customize to provide users with additional instructions.<br/><br/>To begin, select a source of contacts below.";
	else if (view=="upload") ele.innerHTML="<b>DEMO HELP</b><br/><br/>Here you can upload Outlook CSV, Outlook Express CSV, Windows Mail CSV, and Mozilla Thunderbird LDIF. If you have the ActiveX/Desktop importer, the option for fast import is available as well.";
	else if (view=="manual") ele.innerHTML="<b>DEMO HELP</b><br/><br/>Enter the emails of your contacts whom you'd like to invite.";
	else if (view=="login") ele.innerHTML="<b>DEMO HELP</b><br/><br/>You will need to login before we can fetch your contacts.";
	else if (view=="contacts") ele.innerHTML="<b>DEMO HELP</b><br/><br/>Select the contacts whom you wish to invite. The invite system allows you to perform filtering on the contacts to disable the checkbox, or even inject HTML codes such as a 'View Profile' button if the user is already a member of the site. The personal message is optional and can be disabled.";
	else if (view=="captcha") ele.innerHTML="<b>DEMO HELP</b><br/><br/>Some websites or social networks require that the user answer a captcha challenge to prove the he/she is a person and not a computer. Your users may answer the challenges here.";
	else if (view=="bookmark") ele.innerHTML="<b>DEMO HELP</b><br/><br/>We also allow the user to share specific links in social networks or social bookmarks as postings.";
	else if (view=="finished") ele.innerHTML="<b>DEMO HELP</b><br/><br/>And you're done! For more information, go to <a href='http://www.octazen.com'>http://www.octazen.com</a>";
	else if (view=="submitting") ele.innerHTML="Please wait. Submitting data...";
	else ele.innerHTML="Unknown view: "+view;
	*/
	
}
//Javascript callback when a service is selected
function ozOnServiceSelected(svc)
{
}

 