function displayimage(strImage, intWidth, intHeight)
	{

		remote = window.open('', 'Image', 'width=' + intWidth + ',height = ' + intHeight + ', resizable = no, 		scrollbars = no');
		
		if(remote != null)
			{
				if(remote.opener == null)
					remote.opener = self;
					remote.location.href = strImage;
					remote.focus();
			}
	}
	
function osoite(domain,user,DisplayText){    
    var asciiMAILTO = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;";     
    if (DisplayText == null || DisplayText== "" ){ DisplayText = user +'&#64;' + domain;}
    return '<a href="' + asciiMAILTO + user + '&#64;' + domain + '">' + DisplayText + '</a>';
}


function newpage(strPage)
	{

		remote = window.open('', '', 'width=790, height=590, resizable = yes, scrollbars = yes, menubar=no, toolbar=yes, status=yes');
		
		if(remote != null)
			{
				if(remote.opener == null)
					remote.opener = self;
					remote.location.href = strPage;
					remote.focus();
			}
	}
	
	
	function newpagemenu(strPage)
	{

		remote = window.open('', '', 'width=790, height=590, resizable = yes, scrollbars = yes, menubar=yes, toolbar=yes, status=yes');
		
		if(remote != null)
			{
				if(remote.opener == null)
					remote.opener = self;
					remote.location.href = strPage;
					remote.focus();
			}
	}