// GothDesign.net - popupWindow v1.0

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=620,height=420,left = 287,top = 134');");
}


//refresh script

//1
var sURL = unescape(window.location.pathname);

function refresh()
{
    window.location.href = sURL;
}


//2
function refresh()
{
    window.location.replace( sURL );
}


//3
function refresh()
{
    window.location.reload( false );
}
