function writeEmail(user, domain, thisobject) {
	thisobject.href = "mail" + "to:" + user + "@" + domain;
}
function writeMSN(user,domain,thisobject){
	thisobject.href = "msn" + "im:chat?contact=" + user + "@" + domain;
}
function winOpen(thisHref) {
	window.open(thisHref, "news", "width=520,height=450,scrollbars=yes");
	return false;
}
function openWithOnlyImages(thisHref) {
	try {
		var objImageBox = document.getElementById("imageBox");
		
		objImageBox.innerHTML 
		= "<div ><img title='MTS Sample' onclick='hiddenImageBox()' src=\"" + thisHref + "\" /></div>";
		objImageBox.style.display="";
		//alert(document.documentElement.scrollTop);
	} catch (e) {
		var href = "image_view.html?imagesURL=" + thisHref;
		window.open(href, "images", "width=600,height=550,scrollbars=no");
	}
	return false;
}
function hiddenImageBox(){
	var objImageBox = document.getElementById("imageBox");
	objImageBox.style.display="none";
}