function showDescription(descriptionElement,arrowElement){
	document.getElementById(arrowElement + 'NA').style.display= 'none';
	document.getElementById(descriptionElement).style.display= 'block';
	document.getElementById(arrowElement + 'A').style.display= 'block';
	document.getElementById("defaultDescription").style.display = 'none';
}

function removeDescription(descriptionElement,arrowElement){
	document.getElementById(arrowElement + 'NA').style.display= 'block';
	document.getElementById(descriptionElement).style.display='none'
	document.getElementById(arrowElement + 'A').style.display= 'none';
	document.getElementById("defaultDescription").style.display = 'block';
}

function showReviaDescription(descriptionElement){
	document.getElementById(descriptionElement).style.display= 'block';
	document.getElementById("defaultDescription").style.display = 'none';
}

function removeReviaDescription(descriptionElement){
	document.getElementById(descriptionElement).style.display='none'
	document.getElementById("defaultDescription").style.display = 'block';
}

function linkConfirmation(lnk)
{
	stmnt="You are about to leave the Bristol-Myers Squibb (BMS) Australia Abilify.com.au Web site. This link is provided to you as a service to our web site visitors. BMS Australia does not control or endorse this site. \n\nThe information you are about to be referred to may not comply with the Australian regulatory requirements and that further information relevant to the Australian environment is available from the company or via the Approved Product Information. \n\nBMS Australia is not responsible for the privacy policy of any third party Web sites. We encourage you to read the policy of every Web site you visit. \n \n Click 'OK' to proceed to the third party web site or 'Cancel' to return to Abilify.com.au."
	ans = confirm(stmnt); 
	if (ans == true)
	  	var load=window.open(lnk); 
}