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 convert(un) 
{   
	txt = document.conversion.textArea.value;   
	txt = txt + String.fromCharCode(un); 
  	document.conversion.textArea.value = txt;
 	document.conversion.textArea.focus();
	
} 

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

fu7();
