function popupWindow(url, name) {
        var popupWin = window.open(url, name, 'height=305,width=496,scrollbars,resizable');
        if (window.focus) {
                popupWin.focus();
        }
}

function popIt(theURL) {
	whichURL = theURL + ".shtml"
	newWindow = window.open(whichURL,'laptop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=380,height=550,screenX=0,screenY=0,top=0,left=0');
}


