// JavaScript Document
var newwindow = ''
function popitup(url) {
/*
    if (newwindow.location && !newwindow.closed) {
        newwindow.location.href = url;
        newwindow.focus(); }
    else {
        newwindow=window.open(url,'deneme','resizable=1');
    }
*/
newwindow=window.open(url,'deneme','resizable=1');
newwindow.focus();
}

function tidy() {
if (newwindow.location && !newwindow.closed) {
   newwindow.close(); }
}
