﻿// JavaScript Document
function openSite(domain,name) {
	window.open(domain, name, "width=370, height=340, left=300, top=150, menubar=no, status=yes, location=no, toolbar=no, scrollbars=no, resizable=no");
}
function openSite2(domain,name) {
	window.open(domain, name, "width=380, height=600, left=300, top=150, menubar=no, status=yes, location=no, toolbar=no, scrollbars=yes, resizable=no");
}
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}