function eventopen(whatwin,widthx,heighty,yesno,resize)
{
var incr=0;
if(resize=='')
	{resize='no';}

if(widthx=='')
	{widthx=screen.width;}

if(widthx>=screen.width)
	{widthx=screen.width;}
	
if(heighty=='')
	{
		incr=40;
		heighty=400;
	}

if(heighty>=(screen.height-(40-incr)))
	{
		incr=40;
		heighty=(screen.height-(40-incr));
	}

window.open(whatwin,"thewindow","width=" + widthx + ",top=" + (40 - incr) + ",left=" + (screen.width - widthx) /2 + ",height=" + (heighty - (40 - incr)) + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=" + yesno + ",resizable="+resize);
}

function mailUs(email, domain, extension)
{
	var emailaddr = "mailto:";
	emailaddr+=email;
	emailaddr+="@";
	emailaddr+=domain;
	emailaddr+=".";
	emailaddr+=extension;
	document.location= emailaddr;
	document.submit;
	
}
