var tipWin = null;

function openwindow()
{
        str="poll/poll.php";
        tipWin = window.open(str,'tipWin','width=360,height=500,resizeable=yes,scrollbars=yes');
        window.open(str,'tipWin','width=360,height=500');
        tipWin.opener = self;
}

function OpenGbook()
{
var MyWindow;
 MyWindow = open(
   "chor/guestbook/guestbox.php",
   "MyWindowOpen",
   "width=700, height=500, resizable=no, directories=no, menubar=no, location=no, scrollbars=yes");
 MyWindow.moveTo(200,50);
 MyWindow.focus();
}

function OpenForm()
{
var FormWindow;
 FormWindow = open(
   "chor/form/index.php",
   "FormWindowOpen",
   "width=800, height=650, resizable=no, directories=no, menubar=no, location=no, scrollbars=yes");
 FormWindow.moveTo(200,50);
 FormWindow.focus();
}
