function UnHide( eThis )
{

	if( eThis.className == 'nochild') {
		for (var childItem in eThis.parentNode.childNodes) {
		if (eThis.parentNode.childNodes[childItem].tagName == 'DIV') 
			eThis.parentNode.childNodes[childItem].className = 'view';
		}
		eThis.className = 'viewchild';
	}else{
		for (var childItem in eThis.parentNode.childNodes) {
		if (eThis.parentNode.childNodes[childItem].tagName == 'DIV')
			eThis.parentNode.childNodes[childItem].className = 'none';
		}
		eThis.className = 'nochild';
	}
	return false;
}

function popup_prog() {

	function getClientWidth() {
		return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
	}

	function getClientHeight() {
		return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
	}
	
	window.open('/templates/images/fevrl14.jpg', 'fevrl14', 'left='+(getClientWidth()-((400*getClientHeight())/600))/2+',top=10,width='+((400*getClientHeight())/600)+',height='+getClientHeight()+',status=no,toolbar=no,menubar=no,scrollbars=yes,resizable');

}
