function PopupOpen( img_url ){
	win = window.open( popup_url+'?image='+img_url, '_pic_fullview', 'height = 550, width=550, titlebar=0, toolbar=0, status=no, scrollbars=1' );
	setTimeout('win.focus();', 1);
}

function resizeContent()
{
	var ddiv = document.getElementById( 'mainUp' );
	if ( ddiv )
	{
		if ( !document.all )
		{
			if ( ddiv.clientHeight < window.innerHeight )
			{
			//alert([ddiv.clientHeight , window.innerHeight])
				ddiv.style.height = window.innerHeight + 'px';
			}
		} else {
			if ( ddiv.style.height < document.body.clientHeight )
				ddiv.style.height = document.body.clientHeight + 'px';
		}
		ddiv.style.display = 'block';
	}
}
