// JavaScript Document

function ongo(gourl)
{
//alert(gourl);
window.location =gourl;
}

function toggleDiv(id1,id2,id3,flagit) 
{
	
	if (flagit=="1"){
	document.getElementById(id1).style.display = 'block';
	document.getElementById(id2).style.display = 'none';
	document.getElementById(id3).style.display = 'none';
	}
	else
	if (flagit=="0"){
	document.getElementById(id).style.display = 'none';
	}
}

function openWin(url)
{
//alert(url);
var j=window.open(url,"jj","left=20, top=20, width=445, height=410,scrollbars=0") 
}

