function closewin(){
 window.close()
}

function top() {
    topWin.focus();
}

function nueva() {
if (screen.width<=640){
 msg=open('640/default.htm',"","toolbar=0,status=0,menubar=0,location=0,scrollbars=1,titlebar=0,resizable=0", width=screen.Width, height=screen.Height);
}
else
if (screen.width==800) {
 msg=open('800/default.htm',"","toolbar=0,status=0,menubar=0,location=0,scrollbars=1,titlebar=0,resizable=0", width=screen.Width, height=screen.Height);
 }
else
if (screen.width>=1024) {
 msg=open('1024/default.htm',"","toolbar=0,status=0,menubar=0,location=0,scrollbars=1,titlebar=0,resizable=0", width=screen.Width, height=screen.Height);
 }
 
}

function forpage()
{
setTimeout ("nueva()", 6000);
} 

var msg="====================K O R R I G A N Irish Pub=========================";
var speed=200;

    function ScrollTitle() {
        document.title=msg;
        msg=msg.substring(1,msg.length)+msg.charAt(0);
        setTimeout("ScrollTitle()",speed);
    }