function createPopupWindow(html,name,width,height) {
	var n=open
	( 
	html, name, 
	'width='+width+',height='+height
	+',left='+(screen.width -width )/2
	+',top=' +(screen.height-height)/2
	+',status=0,menubar=0,toolbar=0,scrollbars=0,resizable=0'
	);
	n.focus();
}
	
function showLargeImage(sImage,sTemplate,sWidth,sHeight){
	var w,h;
	if(sWidth!='')	
		w=parseInt(sWidth);
	else
		w=650;
	if(sHeight!='')
		h=parseInt(sHeight);
	else
		h=650;
	createPopupWindow('/library/templates/'+sTemplate+'/includes/includeEnlargedImage.asp?image='+escape(sImage),'enlargedImage',w,h);
}

function getMouseX() {
	var tempX;
    tempX = event.clientX + document.body.scrollLeft;
	return tempX;
}

function getMouseY() {
	var tempY
    tempY = event.clientY + document.body.scrollTop;
	return tempY;
}

function showContactPicture(img){
	var o=document.getElementById("tooltip");
	o.innerHTML="<img src=\"" + img + "\" alt=\"\" border=\"0\" style=\"border:2px solid grey\">"
	o.style.display="block";
}

function hideContactPicture(){
	var o=document.getElementById("tooltip");
	o.innerHTML="";
	o.style.display="none";
}

function moveTooltip(e){
	var o=document.getElementById("tooltip");
	o.style.left=getMouseX();
	o.style.top=getMouseY();
}