<!--
function ddown(ly,cl)
	{ 
 	i=1;
    	while (document.getElementById("ly"+i))
 	{
	document.getElementById("ly"+i).style.display='none';
	document.getElementById("cl"+i).className='';
	i++;
	}
 	document.getElementById(ly).style.display='block';
	document.getElementById(cl).className='tabactive';
	}
/*function dhide(ly,cl)
	{
 	document.getElementById(ly).style.display='none';
	}*/
//-->

/******
This function is used to submit the form for searh post.
******/
function submitform(formid)
{
	document.getElementById(formid).submit();
}


/*************
function to open pop up in new window
***************/
function windowOpener(windowWidth, windowHeight, windowName, windowUri)
{
   var centerWidth = (window.screen.width - windowWidth) / 2;
    var centerHeight = (window.screen.height - windowHeight) / 2;

    newWindow = window.open(windowUri, windowName, 'resizable=0,width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight +
		',resizable=0' +
		',scrollbars=0' +
		',titlebar=0' + 
		',status=0');

    newWindow.focus();
    return newWindow.name;
}

