function openSoundWindow(url, name){
  var features = 'width=650,height=300,scrollbars=yes,resizable=no,dependent=yes,menubar=no';
  window.open(url, name, features);
}

function openNewWindow(url, name){
  var features = 'width=650,height=500,scrollbars=yes,resizable=no,dependent=yes,menubar=no';
  window.open(url, name, features);
}

function openSmallWindow(url, name){
  var features ='width=300,height=400,scrollbars=yes,resizable=yes,dependent=yes,menubar=no';
  window.open(url, name, features);
}
  
function openAnswerWindow(url, name){
  var features ='width=620,height=100,scrollbars=yes,resizable=yes,dependent=yes,menubar=no';
  window.open(url, name, features);
}

function openWin(URL){
	aWindow=window.open(URL,"thewindow",
	"height=480,width=640, top=availTop, left=availWidth,resizable=yes,scrollbars=yes");
}

function openWin2(URL){
	aWindow=window.open(URL,"thewindow",
	"height=175,width=450, top=availTop, left=availWidth");
}

function E_Mail(email1, email2, email3, statMsgIn, statMsgOut, subject) {
	var Mail2 = "\"mailto:";
	Mail2  += email1+"@"+email2+"."+email3;
   	Mail2  += "?subject=" + subject + "\"";
   	var Ovr = " onMouseOver=\"window.status='";
   	Ovr    += statMsgIn + "'; return true;\"";
   	var Out = " onMouseOut=\"window.status='";
   	Out    += statMsgOut + "'\"";
   	return(document.write("<a href=",Mail2+Ovr+Out,">"));
}
			

