//////////////////////////////////////////////////////////////////////////////////////////////////////////////
																		//
var d = document;														//
																		//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
var tPh=0;

function phg(num) {
	if(num!=tPh && d.getElementById('ph'+num)) {
		d.getElementById('ph'+tPh).className='dn';
		d.getElementById('ph'+num).className='';
		tPh=num;
	}
} 


