function imgpopup (theURL) {
	window.open("/showbigimage.php?src="+theURL,
		"Image",
		"toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=200,height=200");
}

originalConfirmFunction = window.confirm;
window.confirm = function (str){
  var res = originalConfirmFunction(str);
  if (navigator.appVersion.indexOf("MSIE") != -1)
   if (window.event)
    window.event.returnValue = res; // IE 
  return res;
}


function changeImage(img1, img2, divcontainer, imgmenu, newimg, change){
	if(change==1){
		document.getElementById(img1).src = '/images/menu_left_on.gif';		
		document.getElementById(img2).src = '/images/menu_right_on.gif';	
		document.getElementById(imgmenu).src = '/showimage.php?img='+newimg;	
		document.getElementById(divcontainer).style.backgroundColor = '#fe0002';
	}	
	else{
		document.getElementById(img1).src = '/images/menu_left.gif';		
		document.getElementById(img2).src = '/images/menu_right.gif';	
		document.getElementById(imgmenu).src = '/showimage.php?img='+newimg;
		document.getElementById(divcontainer).style.backgroundColor = '#000000';
	}
}