function openQuickWindow(linkHref){ var url = "writeFile.cfm?writeUrl=" + linkHref; if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else { if (window.ActiveXObject) { try { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { } } } if (xhr) { alert("its here"); xhr.open("GET", url, true); xhr.send(null); } else { alert("Error"); } return false; //window.open("writeFile.cfm?writeUrl=" + linkHref) }