// JavaScript Document

function changePic(a,b,d)
{	
	var c 
	c = document.all(a)
	c.src = b.src
	document.all(d).innerText = b.title
	
}

function ChangePage(a)
{
	location.href = a.options[a.selectedIndex].value	
}


function OpenBigPhoto(value)
{	 
  var aa;
   var str=window.open("","aaa","width=402,height=420,left=100");  
  aa = value;
  str.document.open()   
  str.document.write("<body topmargin=0 leftmargin=0 marginwidth=0><img src='"+aa+"' width=400 border='0'></body>")   
  str.document.close()   
}