// JavaScript Document
function url(){
var a = document.getElementsByTagName("a");
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){
// On Click
	for(var i=0;i<a.length;i++){

		if(!a[i].getAttribute("href")) {
			
		}else{ a[i].onclick=function(){
				if(this.className == 'extLink') {
					return true;
				}else{
					window.location = this.getAttribute("href");
					return false;
				}
			}
		}
	}
	}
}