
var width  = 520;
var height = 345;

function popWindow() {
newWindow = window.open('../popup.html','newWindow', 'toolbar=no,menubar=no,top=400,left=600,resizable=no,scrollbars=no,status=no,location=no,width='+width+',height='+height); 



}

// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header

var howLong = 20000;

t = null;
function closeMe(){
t = setTimeout("self.close()",howLong);
}