
 
function OpenWindow(sFileName, iWidth, iHeight)
{
var sSize = 'width=' + iWidth + ',height=' + iHeight + ',resizable' + ',scrollbars';
var sDate = new Date();
var sTime = sDate.getSeconds() + "_" + sDate.getMinutes() + "_" + sDate.getHours();
var newWindow = window.open(sFileName,sTime,sSize); 
}

function Search(strURL, strElement) {
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    }
    else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function () {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            if (document.getElementById(strElement)) {
                document.getElementById(strElement).innerHTML = xmlhttp.responseText;
            }
        }
    }
    xmlhttp.open("GET", strURL, true);
    xmlhttp.send();
}

function isbn(strURL){
 if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    }
    else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function () {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        }
    }
    xmlhttp.open("GET", strURL, true);
    xmlhttp.send();
}





