/*=========================================

 filename:  common.js
 create:    2009/10/6
 copyright: 

=========================================*/

function addEvent(elm,type,fn){
	try{
		elm.addEventListener(type,fn,false);
	}
	catch(e){
		elm.attachEvent("on"+type,fn);
	}
}