// JavaScript for IsraeliConsulate.org



// External Links
// Opens anchor links in a new browser window using the property rel="external", 
//   as it is more accessible and valid than the legacy 'target' property.
// Credit: Drew Noakes -- http://drewnoakes.com

function initLinks() {
	for (i in document.links) {
		link = document.links[i];
		if (link.rel && link.rel.indexOf('external') != -1) {
		/* if (link.rel && link.rel.indexOf('external'||'ext') != -1) { */
			link.onclick = onExternalLinkActivate;
			link.onkeypress = onExternalLinkActivate;
		}
	}
}

function onExternalLinkActivate() {
	window.open(this.href);
	return false;
}

window.onload = initLinks;


