// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popup(strURL, strTitle, intWidth, intHeight){
	window.open(strURL, strTitle, 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width='+ intWidth + ',height=' + intHeight + ',left=390,top=262');
}

function sendemail(email1,email2,email3,subject){
    parent.location = 'mailto:' + email1 + '@' + email2 + '.' + email3 + '?subject=' + subject;
}

