var w;

function popUp(url)
{
	w = window.open(url, "", "width=450,height=200");
}

function close()
{
	w.close();
}

function redirect(app)
{
	win = window.open("http://www.bigredh.com/hotline3/servlet/YesMailServlet2");
	
	switch(app)
	{
		case "mac_client":
			this.location = "http://www.bigredh.com/hotline3/servlet/DownloadServlet?id=2&ver=0";
			break;
        case "mac_server":
			this.location = "http://www.bigredh.com/hotline3/servlet/DownloadServlet?id=2&ver=1";
			break;
        case "pc_client":
            this.location = "http://www.bigredh.com/hotline3/servlet/DownloadServlet?id=2&ver=2";
            break;
        case "pc_server":
            this.location = "http://www.bigredh.com/hotline3/servlet/DownloadServlet?id=2&ver=3";
            break;
    }                       
}

