
//--------------------------------------
function DecWriteMail(decstring)
{
var buff='';

for(var i=0;i<decstring.length;i++)
	{
	if(i%2==0)
		buff+=decstring.charAt(i);
		

	}
	

	
document.write('<a style="font-size: 10px;color: #E4EDF5;" href="mailto:'+buff+'">'+buff+'</a>');
}
//--------------------------------------
function View(wth,hei,src) 
{
srcp="imgview.php?width="+wth+"&height="+hei+"&src="+src;

view=window.open(srcp,'user','width='+wth+',height='+hei+',status=0,resizable=0');
var xc =(screen.width - wth) / 2;
var yc =(screen.height - hei) / 2;

view.moveTo(xc, yc);
}
