function go(mode1,mode2,name,w_left,w_top,w_width,w_height,site,par)
{
    var mypar = escape(par);
    mypar = mypar.replace(/\+/,"%2b");
    if (typeof par != 'undefined')
    {
      site=site+mypar;
    }
    if (navigator.appName=='Microsoft Internet Explorer')
    {
      nsite = site;
    }
    else
    {
      nsite = site;
    }
    w_date = new Date();
    if (name == 'none')
    {
      w_name = w_date.getTime();
    }
    else
    {
      w_name = name;
    }

    F_size = "left=" + w_left + ",top=" + w_top + ",width=" + w_width + ",height=" + w_height

    if (mode2 == 'F')
    {
        w_style = ",toolbar=yes,location=yes,resizable=yes,status=yes,scrollbars=yes,menubar=no"
    }
    if (mode2 == 'N')
    {
        w_style = ",toolbar=no,location=no,resizable=no,status=no,scrollbars=no,menubar=no"
    }
    if (mode2 == 'R')
    {
        w_style = ",toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,menubar=no"
    }
    if (mode2 == 'A')
    {
        w_style = ",toolbar=no,location=no,resizable=no,status=no,scrollbars=yes,menubar=no"
    }

    if (parseInt(navigator.appVersion) >= 4)
	{
        A_size = "left=" + (screen.width/100)* 9 + ",top=" + (screen.height/100)* 9 + ",width=" + (screen.width/10)* 8 + ",height=" + (screen.height/10)* 7
	}
	else
	{
        A_size = "left=0,top=0,width=600,height=400"
	}

    if (mode1 == 'F')
    {
	w_new = window.open(nsite,w_name,F_size + w_style);
    }
    if (mode1 == 'A')
    {
        w_new = window.open(nsite,w_name,A_size + w_style);
    }

    if (mode1 == 'G')
    {
        w_new = window.open(nsite,w_name,w_style);
    }

    if (parseInt(navigator.appVersion) >= 4)
	{
        w_new.window.focus();
    }
}
