function initLinks(){
	var c = document.getElementById('content');
    var as = c.getElementsByTagName('a');
    for (var i=0; i<as.length; i++){
		if (as[i].className.indexOf("pop") != -1){
            addAnEvent(as.item(i),'click',popupWin);
        }
    }
}

function popupWin(){
 		appWindow = window.open (this.href,"popup","width=800,height=600,toolbar=1,scrollbars=1,resizable=1");
		appWindow.focus ();
		return false;        
}

function initialize(){
	if ( document.getElementById ){
		initLinks();
	}
}

function addAnEvent( target, eventName, functionName){
   eval('target.on'+eventName+'=functionName');
}

window.onload=initialize;