function openWindow (url, name) {
	window.open(url, name, 'width=600,height=500,status=yes,scrollbars=yes,resizable=no');
}
 
function initFalseStateLinks(W3CEvent) {
// Locate all the <a> links on the page
   	var noLinks = document.getElementsByTagName('a');
	// Loop through the list
		for(i=0 ; i < noLinks.length; i++) {
			//find <a> links with 'no-link-onPopup' in classname;
			var classnames = ADS.getClassNames(noLinks[i]);
			//need to convert classnames to string for IE
			var currentClass = classnames.toString() ;
				if (currentClass.indexOf('no-link-onPopup') != -1) {	
					registerFalseStateLinksListeners(
						noLinks[i],
						currentClass
  						);
				}
		}
}

function registerFalseStateLinksListeners(noLink,classname) {
// prevent the default click action on noLink
    ADS.addEvent(noLink, 'click', function (W3CEvent) { 
		ADS.preventDefault(W3CEvent);
	});

}
//Note: ADS.addEvent(window,'load',initFalseStateLinks); is added to file that wants to prevent default a click action
