
function cosmoturk_goTo( url ) {
	window.location.href = url;
}




function cosmoturk_navBar( tableCellRef, hoverFlag, navStyle,renk ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#C45780';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = renk ;
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function validate(theForm)
	{
		if (theForm.sites[0].checked)
		{
		 theForm.action = "arama.asp?Catx=arama";
		} else
		{
			theForm.action = "google.asp";
		}
			
			 
	}


