// *******************************************************************
//
// PHOTOSKIASI.com
// Javascripts
//
// *******************************************************************



// *******************************************************************
// SHOW - HIDE div
// *******************************************************************
function hidediv() {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('comment_layer').style.visibility = 'hidden';
	}
	else {
		if (document.layers) { // Netscape 4
			document.comment_layer.visibility = 'hidden';
		}
		else { // IE 4
		document.all.comment_layer.style.visibility = 'hidden';
		}
	}
}

function showdiv() {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('comment_layer').style.visibility = 'visible';
	}
	else {
		if (document.layers) { // Netscape 4
		document.comment_layer.visibility = 'visible';
		}
		else { // IE 4
		document.all.comment_layer.style.visibility = 'visible';
		}
	}
} 



// *******************************************************************
// CLIVKING ON PHOTO MOVES TO NEXT-PREV PHOTO
// *******************************************************************
function browsing(){
	var existprev = "<IMAGE_PREVIOUS_ID>";
	var existnext = "<IMAGE_NEXT_ID>";
	if (existprev != "<IMAGE_ID>"){
		document.write('<a href="#" id="menu_browse_prev" onclick="document.location=\'index.php?showimage=<IMAGE_PREVIOUS_ID>\';"></a>');
	}
	if (existnext != "<IMAGE_ID>"){
		document.write('<a href="#" id="menu_browse_next" onclick="document.location=\'index.php?showimage=<IMAGE_NEXT_ID>\';"></a>');
	}
}



// *******************************************************************
// SHOWING ALERT BOX FOR IE USERS
// *******************************************************************
function showalert()
{
	alert("If you're using Internet Explorer you might see some things displaying differently than in other browsers.\n\nI tried very hard to make this site full compatible with Internet Explorer, but after a lot of effort i finaly gave up. Looks like Microsoft finds it very hard to follow international standards.\n\nSo if you're using IE, i suggest you download the latest version of this browser or even better switch to Firefox and make yourself (and designers around the world) a huge favor. :)\n \n TP. ");
}

