function hex2char(val) {
	str=new String(val);
	ret='';
	for(i=0;i<str.length;i++) {
		_char=str.charAt(i)+str.charAt(++i);
		ret+=String.fromCharCode(parseInt(_char,16));
	}
	return ret;
}

function changeUrl(obj,val) {
	if(!val) obj.href='mailto:null@null.ru';
	else obj.href='mailto:'+hex2char(val);
}

function pcShowPhoto(imgCaption, imgName, imgWidth, imgHeight) {
	var pcWnd = window.open('', Math.round(Math.random()*10), 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+imgWidth+',height='+imgHeight);
	pcWnd.document.writeln('<html><head><title>'+imgCaption+'</title></head>');
	pcWnd.document.writeln('<body bgcolor=#FFFFFF topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">');
	pcWnd.document.writeln('<table width=100% height=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center valign=middle><a href="javascript: window.close()"><img src="'+imgName+'" border=0 alt="'+imgCaption+'"></a></td></tr></table>');
	pcWnd.document.writeln('</body></html>');
	pcWnd.focus();
}

