function RollOver (obj,val) {
  obj.src = val;
}


function movePage(){
	var targeturl=document.getElementById("pulldown").value;
	document.location = targeturl;
}


function openPHOTO(myFILE,myARTIST){
var myFILE;

	var newP= window.open('','newWINP1','scrollbars=0,width=420,height=420');
	//var loadGIF='loading01.gif'
	var mySRC = "log/pickup/pict/big/"+myFILE;

	newP.document.open();
	newP.document.write("<html>");
	newP.document.write("<head>");
	newP.document.write('<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS" />');
	newP.document.write("<style media='screen' type='text/css'><!--BODY { margin: 0px; color: black; font-size: 11px; }--></style>");
	newP.document.write("<title>"+myARTIST+"pict</title>");
	newP.document.write("</head>");
	newP.document.write("<body onBlur='window.close()' onClick='window.close()'>");



	newP.document.write("<table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle>");

	newP.document.write("<img src='"+mySRC+"'>");
	//newP.document.write(myARTIST);

	newP.document.write("</td></tr></table>");

	newP.document.write("</body>");
	newP.document.write("</html>");
	newP.document.close();
}




















