//*******************************************
//POP-UP WINDOW
//*******************************************
function OpenBrWindow(theURL,winName,features) {
	Window = window.open(theURL,winName,features);
}

//*******************************************
//STATUS
//*******************************************
function statusDisplay() {
	document.title = "Farid Parhad's Art";
	window.status = document.title;
}
//window.onMouseMove = statusDisplay();

function img(obj,image){
	obj.src = "images/" + image
}

function checkCookies()
{
//alert(navigator.cookieEnabled);
	if (!navigator.cookieEnabled || document.cookies == "undefined") {
		document.getElementById("tableMessage").style.display = "block";
		document.getElementById("tableButtons").style.display = "none";
	} else {
		document.getElementById("tableMessage").style.display = "none";
		document.getElementById("tableButtons").style.display = "block";
	}
}

function fadeEm(which){
	if(event.type == "mouseover"){
		which.className = "thumbsOff";
	}else{
		which.className = "thumbs";	
	}
}
