
// setInterval("show()",2000);

function show()
{

	document.getElementById("blink1").style.visibility = "visible";
	document.getElementById("blink2").style.visibility = "visible";
	if(frm.hdnVal.value==1) {	
	document.getElementById("blink1").innerHTML="&quot; We are very pleased with the successful testing carried out with NGIN technologies we are very pleased ...&quot;<p></p><br> <span class='text_head_right'>Robert Crowe,</span><br>VP Engineering, Bell South";	
	document.getElementById("blink2").innerHTML="";	}

	else if(frm.hdnVal.value=2) {
	document.getElementById("blink1").innerHTML="&quot; With an Internet connection and Internet Explorer, you can find and view  With an Internet connection and Internet Explore..&quot;<p></p><br> <span class='text_head_right'>Prabakaran,</span><br>AP Solutions, Florida South"; 
	document.getElementById("blink2").innerHTML="";	}
	
	 setTimeout("hide()",7000);
	
//	setInterval("hide()",1700);
}

function hide()
{
	document.getElementById("blink1").style.visibility = "hidden";
	document.getElementById("blink2").style.visibility = "hidden";
	if(frm.hdnVal.value==1) {
	frm.hdnVal.value=2; }
	else if(frm.hdnVal.value==2) {
	frm.hdnVal.value=1; }
	
	setTimeout("show()",500)
}


