/* This is a java script File */

if (navigator.appVersion.indexOf('Safari')!=-1) {
	document.write("<style type=\"text/css\" media=\"screen\">form div.button {border: none !important; position: relative; top: 4px;}</style>");
}

onload=function() {
	var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			if (anchors[i].className.indexOf('popup')>-1){
				anchors[i].onclick=function(){window.open(this.href); return false;};
			}		
		}
	
	popup_features = 'location=0, statusbar=0, menubar=0, width=824, height=989, scrollbars=yes, resizable=yes';
	var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			if (anchors[i].className.indexOf('popup_internal')>-1){
				anchors[i].onclick=function(){window.open(this.href, '_blank', popup_features); return false;};
			}		
		}
		
	popup_features = 'location=0, statusbar=0, menubar=0, width=824, height=889, scrollbars=yes, resizable=yes';
	var uls = document.getElementsByTagName("ul");
		for (var i=0; i<uls.length; i++) {
			if (uls[i].className.indexOf('popup_list')>-1){
				anchors = uls[i].getElementsByTagName("a");
				for (var j=0; j<anchors.length; j++) {
					anchors[i].onclick=function(){window.open(this.href, '_blank', popup_features); return false;};
				}
				
			}		
		}	
}