document.onmousedown = checkLink;
window.onbeforeunload = windowClose;
Popup = 0;
function checkLink() {
obj = window.event.srcElement;
Temp = window.location.hostname;
Local = Temp.replace(/[URL unfurl="true"]www./g,"");[/URL]
if ((event.button == 1) && (obj.tagName == "A")) {
URL = obj.href;
Pos = URL.indexOf('/',7);
Temp = URL.substr(7,Pos-7);
Domain = Temp.replace(/[URL unfurl="true"]www./g,"");[/URL]
if (Domain != Local) {
Popup = 1;
}
}
}
function windowClose() {
if (Popup == 1) {
window.open('survey.html','pollWindow','resizable=no,status=no');
}
}