function myover () {
	var nav = document.getElementById("Pone");
	nav.style.display="none";
	/*document.write("ddddddddddddddd");*/
	
}

function display (id) {
	/*alert('hello' + id);*/
	var nav = document.getElementById(id);
	/*nav.innerText("dfsdf");*/
	/*nav.innerHTML = "-dsfsdf";*/
	nav.style.display="block";
	
}

function unDisplay (id) {
	/*alert('hello' + id);*/
	var nav = document.getElementById(id);
	/*nav.innerText("dfsdf");*/
	/*nav.innerHTML = "-dsfsdf";*/
	nav.style.display="none";
	
}

function unBold(theIdName) {
	/*
	var nav = document.getElementsByTagName("a");
	
	for (var i=0; i<nav.length; i++) {
		if (nav[i].className == theClassName) {
			nav[i].style.fontWeight="normal";
		}
	}
	*/
	
	/*alert("unboldening"+ theIdName);	*/
	
	
	var nav = document.getElementById(theIdName);
	nav.style.fontWeight="normal";
	nav.style.color = "white";


}

function bold(theIdName) {
	/* alert("boldening"+ theIdName);*/
	
	var nav = document.getElementById(theIdName);
	nav.style.fontWeight="bold";
	nav.style.color = "#dddddd";
	

}

function formChange(dropdown)
{
	var myindex  = dropdown.selectedIndex ;
	var SelValue = dropdown.options[myindex].value ;
	/*alert('hello' + SelValue);*/
	display(SelValue) ;
    
	return true;
}

function formChangeGo(dropdown, wantPassord)
{

	
	
	var myindex  = dropdown.selectedIndex ;
	var SelValue = dropdown.options[myindex].value ;
	/*	
	alert('protocol'+window.location.protocol);
	alert (window.location.protocol + "//" + window.location.host +"/"+ window.location.pathname +"/"+ "index2profile.php?profile="+SelValue);*/
	 /*window.location="http://www.yourdomain.com/";*/
	 /*window.location +*/
	 /*"http://" + */
	 var loco =   window.location.protocol + "//" + window.location.host +"/"+ window.location.pathname +"/"+ "index2profile.php?profile="+SelValue;
	 /*alert(loco);*/
	 window.location = loco;
	 
	/*display(SelValue) ;*/
    
	return true;
}



function roundEm() {
	/*	
	new Rico.Effect.Round( null, "roundNormal");
	new Rico.Effect.Round( null, "roundTop", {corners:'tl tr'} );
	new Rico.Effect.Round( null, "roundBottom", {corners:'bl br'} );
	new Rico.Effect.Round( null, "roundDiag", {corners:'tr bl'} );
	*/
}

