function sm(n,k,s)
{		
	var d="";
	for(i=0;i<s.length;i++)
		d+=String.fromCharCode(k.charCodeAt(i)^s.charCodeAt(i));
	n.innerHTML='<a hr'+'ef="'+'ma'+'i'+'lto'+':'+ d + '">' + d + '</a>';
}

function sm_crop(n,k,s)
{		
	var d="";
	for(i=0;i<s.length;i++)
		d+=String.fromCharCode(k.charCodeAt(i)^s.charCodeAt(i));
	if(d.length>22)
		n.innerHTML='<a hr'+'ef="'+'ma'+'i'+'lto'+':'+ d + '">' + d.substr(0,22) + '...</a>';
	else
		n.innerHTML='<a hr'+'ef="'+'ma'+'i'+'lto'+':'+ d + '">' + d + '</a>';
}

function BigImagePopup(PropertyID, ImageOrder, ImageTitle)
{
	var MyURL = '/getimage.php?PropertyID=' + PropertyID + '&ImageOrder=' + ImageOrder;
	MyPop = window.open("", "Details", "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,width=336,height=280");
	MyPop.document.write('<html><head><title>Details</title></head>');
	MyPop.document.write('<body><center><img src=\'' + MyURL + '\'><br><div style="color:#808080; font-family:arial; font-size:12px; padding-top:5px">' + ImageTitle + '</div></center></body></html>');
	MyPop.document.close();
	MyPop.focus();
}
