function enterSite() {
	document.getElementById("maincontent").style.display="block";
	document.getElementById("splashscreen").style.display="none";
}
window.onload=function() {
	loc=document.location;
	var urls=Array();
	urls.push("http://www.artmashad.ir");
	urls.push("http://artmashad.ir");
	urls.push("http://www.artmashad.ir/");
	urls.push("http://artmashad.ir/");
	urls.push("http://artmashad.ir/Default.aspx");
	urls.push("http://www.artmashad.ir/Default.aspx");
	firstPage=false;
	for(i=0;i<urls.length;i++) {
		if(loc==urls[i]){
			firstPage=true;
		}
	}
	if(!firstPage){
		enterSite();	
	}
}