function popupChat() {
 var USERANICK = document.UserInfo.VERTICAL.value
 var USERAHORIZONTAL = document.UserInfo.HORIZONTAL.value
        win=window.open("popup.html", "Sheridan's Homepage GAMES!!",
                   "height=USERANICK,width=USERAHORIZONTAL");
}     


function send()
{
   if (document.UserInfo.VERTICAL.value == null ||
                                        document.UserInfo.VERTICAL.value == "")
   {
        window.alert("Be kell írnod egy függőleges adatot. magadnak.")
        return false
   }
  if (document.UserInfo.HORIZONTAL.value == null ||
                                        document.UserInfo.HORIZONTAL.value == "")
   {
        window.alert("HORIZONTAL nélkül nem lehet játszani.")
        return false
   }

 var USERNICK = document.UserInfo.VERTICAL.value
 var USERHORIZONTAL = document.UserInfo.HORIZONTAL.value

 win=window.open("","IRC","resizable=no,height="+USERNICK+",width="+USERHORIZONTAL)
 win.document.write('<html><head><link rel="stylesheet" href="ie.css" type="text/css"><title>SHP GAMES!! || Absolute Space OnLine ||</title></head>')
 win.document.write('<body bgcolor="#000000">')

 win.document.write('<applet code=Absolute.class WIDTH=100% HEIGHT=100%>')         
 win.document.write('</applet>')
 win.document.write('</body>')
 win.document.write('</html>')
 win.document.close()


 //document.location=document.referrer
 //document.location="intro.html"

 return true
}            
