/*		
		function Hide(Cell){
		var myCell = document.getElementById(Cell);
		myCell.style.display = "none"
		}
		function Show(Cell){
		var myCell = document.getElementById(Cell);
		myCell.style.display = "";
}
function ChangeCell(Cell)
{
var myCell = document.getElementById(Cell);
myCell.style.background="gainsboro"
}
function ChangeBack(Cell)
{
var myCell = document.getElementById(Cell);
myCell.style.background="none"
}



// AJAX STAFF
function createRequestObject() {
    var ro;
    var browser = navigator.appName;
    if(browser == "Microsoft Internet Explorer"){
        ro = new ActiveXObject("Microsoft.XMLHTTP");
    }else{
        ro = new XMLHttpRequest();
    }
    return ro;
}


var http = createRequestObject();

function changeSStory() // formNumber -y arajzhm chenq ogtagorcum
{
	http.open('get', '/ajax/changeSStory.php?cahkiller=' + Math.floor(Math.random( ) * 5 - 15 + 1) + 15 );
	http.onreadystatechange = changeSStoryReady;
	http.send(null);
	
	setTimeout( "changeSStory()", 20000 );
}

function changeSStoryReady()
{
	if(http.readyState == 4)
	{
		if( http.responseText != '' )
		{
			document.getElementById('sStoryContainer').innerHTML = http.responseText;
		}
	}
}
*/
function siteMap() // formNumber -y arajzhm chenq ogtagorcum
{
	document.getElementById('siteMap').style.display = 'block';
}


function Visiblepopup(id)
{
	document.getElementById(id).style.display = 'block';
}
function Hiddenpopup(id)
{
	document.getElementById(id).style.display = 'none';
}