function menuHighlight(elementID, theColor){
	eval('document.getElementById("' + elementID + '").style.borderTop="solid ' + theColor + ' 1px"');
	eval('document.getElementById("' + elementID + '").style.borderBottom="solid ' + theColor + ' 1px"');
	eval('document.getElementById("' + elementID + '").style.borderLeft="solid ' + theColor + ' 1px"');
	eval('document.getElementById("' + elementID + '").style.borderRight="solid ' + theColor + ' 1px"');
}
function randomClips(whichVar){
	var Iloop = 10;
	var Aloop = 11;
	var Hloop = 30;
	var Kloop = 25;
	var Ploop = 23;
	var imgStr = "";
	
	if(whichVar=="I"){
		var i = Iloop;
	}
	if(whichVar=="A"){
		var i = Aloop;
	}
	if(whichVar=="H"){
		var i = Hloop;
	}
	if(whichVar=="K"){
		var i = Kloop;
	}
	if(whichVar=="P"){
		var i = Ploop;
	}

    var ranNum= Math.round(Math.random()*i);
	if(ranNum==0)ranNum=1;
	imgStr = whichVar + ranNum + '.jpg';
	eval("document.getElementById('cell" + whichVar + "').style.backgroundImage='url(http://www.middleeastinfo.org/images/rotateImg/" + imgStr + ")'");
	//eval('document.getElementById("celly")').innerHTML = imgStr;
}

function changeBackground(elementID, theColor){
	eval('document.getElementById("' + elementID + '").style.backgroundColor="' + theColor + '"');
}
function checkNumeric(){
	var key = window.event.keyCode;
	if ( key > 47 && key < 58 )
	  return;
   else
	  window.event.returnValue = null;
}