ie=(document.all)?true:false; // IE4+
dom=((document.getElementById)&&(!ie))?true:false; // Mozilla 

function setEventById(id,ev,fun) {
  if(dom){
    document.getElementById(id).addEventListener(ev,fun,false);
  } 
  if(ie){
    document.getElementById(id).attachEvent('on' + ev, fun);
  }
} 

function alpha(unicode) 
{   
		txt = document.conversion.textArea.value;   
		txt = txt + String.fromCharCode(unicode); 
  	document.conversion.textArea.value = txt;
 		document.conversion.textArea.focus();
} 

function fu7(){
	self.resizeTo(580,415);
}//absolut ändring, fönsterstorlek.

fu7();
