/* note: u param must be a url that provides a printable version of the page */ 
function printme(u) {
	w = window.open(u, null, "width=600,height=" + screen.availHeight + ",location=no,titlebar=no,menubar=no,scrollbars=yes,resizable=yes");
	w.focus();
}

ion  = new Image();
ioff = new Image();
ion.src  = "img/ico_select.gif";
ioff.src = "img/ico_select_off.gif";

function navon(o)  {document.images[o].src = ion.src;}
function navoff(o) {document.images[o].src = ioff.src;}

function selectCountry(selectObj) {
    if (selectObj.options[selectObj.selectedIndex].value != "null") {
        document.location = selectObj.options[selectObj.selectedIndex].value;
    }
}

function vetUnload(e) {
    var u = '';
    if (e == null) {
        u = "" + window.event.srcElement;
		if (u == "[object]") {
			u = "" + window.event.srcElement.parentNode;
        }
		if (u == "[object]") {
			u = "" + window.event.srcElement.parentNode.parentNode;
		}
    }
    else {
        u = "" + e.currentTarget;
    }
    if (u.indexOf("http://") != -1 && u.indexOf(SITEROOT) == -1 && u.indexOf("arkena.") == -1) {
        return confirm("You are now leaving the Ferring.com web site. Please note that Ferring does not have responsibility for, or control of, the contents, availability, operation or performance of other web sites to which this web site may be linked or from which this web site may be accessed. Consequently, Ferring makes no representations or warranties regarding any other web site which you may access through Ferring.com. In addition, a link to a non-Ferring web site does not mean that Ferring endorses that web site or has any responsibility for the use of such web site.");
    }
    return true;
}

window.onload = tweakAnchors;

function tweakAnchors() {
    for (var a in document.anchors) {
		if (document.anchors[a].onclick == null) {		
			document.anchors[a].onclick = vetUnload;
		}
    }
}



