function showHide(itemId){
	var target= document.getElementById(itemId);
	
	if(target.style.visibility == "visible")
	{
		target.style.visibility = "hidden";
	}
	else
	{
		target.style.visibility = "visible";		
	}
}

function redirect(txt) {

	window.open(txt,'_new');
	
}