wo_init = function(){
	var ancObjs = document.getElementsByTagName("a");
	for(var i=0; i<ancObjs.length; i++){
		if(ancObjs[i].rel == "wo_atgt"){
			var newEvent = "wo_openNewWindow('" + ancObjs[i].href + "')";
			ancObjs[i].setAttribute('href', 'javascript:void(0);');
			if(navigator.appName != "Netscape"){
				// For IEs
				ancObjs[i].setAttribute('onclick', new Function(newEvent));
			}else{
				// Others
				ancObjs[i].setAttribute('onclick', newEvent);
			}
		}
	}
}

wo_openNewWindow = function(tgtURI){
	window.open(tgtURI,"newWindow");
} 