
var all_o_p = getElementsByClass ( "p_o" ) ;

all_o_p.push( $("new_pic") ) ;

for ( var i = 0 ; i < all_o_p.length ; i++ )
{
	if ( all_o_p[i] )
	{
		all_o_p[i].onclick = function ()
		{
			var pic = this.className.split(" ")[1].split("x") ;
			var width = Number(pic[0])+20
			window.open("open.php?name="+pic[1],"","HEIGHT=500,WIDTH=" + width + ",AlwaysRaised,scrollbars=yes,resizable=yes,menubar");
		}
		
		all_o_p[i].onmouseover = function ()
		{
			//this.style.borderColor = "#fff" ;
			//this.style.zIndex = 50 ;
			//this.style.visibility = "visible" ;		
			//console.debug(this.className.split(" ")[1]) ;
			var aa = getElementsByClass(this.className.split(" ")[1])
			aa[0].style.visibility = "visible" ;
			
		}

		all_o_p[i].onmouseout = function ()
		{
			//this.style.borderColor = "#000" ;

			var aa = getElementsByClass(this.className.split(" ")[1])
			aa[0].style.visibility = "hidden" ;
		}
	}
}
//$("temp").innerHTML +=  + " -- " ;
