

function popupwin(theurl,w,h, params)
{
	if(!params)
		params='scrollbars=1,toolbar=1,resizable=1,location=0,status=0';
	if(!w)
		w=600;
	if(!h) 	
		h=550;
	
	var urlattributes = 'width=' + w + ',' + 'height=' + h + ',' + params;
  
  	windowobject=window.open(theurl,'newWindow',urlattributes);
	windowobject.focus();
}

function CreateEmail(Ext, Domain, Name)
{
	document.write('<a href="mailto:' + Name + "@" + Domain + '.' + Ext + '">');
	document.write(Name + '@' + Domain + '.' + Ext );
	document.write('</a>');
}

/*
function GoogleAnalytics()
{
	var str='';
	str+='<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>';
	str+='<script type="text/javascript">';
	str+='_uacct = "UA-2876771-1";';
	str+='urchinTracker();';
	str+='</script>';
	document.write(str);
}

GoogleAnalytics();
*/

