var theURL ='PrintPopup.html';
var width  = 1;
var height = 1;

function popWindow() {
newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,width='+width+',height='+height);
}
var howLong = 1500;

t = null;
function closeMe(){
t = setTimeout("self.close()",howLong);
}

