
function OpenEmail(User,Domain) { 
	document.location = 'mailto:' + User + '@' + Domain; 
	}

function StartGallery(GalleryName,GalleryCount) {
	window.open('/gallery.php?gallery='+GalleryName+'&max='+GalleryCount, 'Gallery', 'top=0,left=0,screenX=0,screenY=0,fullscreen=no,status=no,menubar=no,scrollbars=no,toolbar=no,location=no,resizable=no,height=355,width=320');
	}

function InsertEmoticon(Icon) {
	document.AddComments.comments.focus(); 
	document.AddComments.comments.value=document.AddComments.comments.value +" "+ Icon +" "; 
	document.AddComments.comments.focus() 
	}
