﻿// JScript 文件
function $(str){return document.getElementById(str);}
function show(id)
{
    $("p1").style.display=$("p2").style.display=$("p3").style.display=$("p4").style.display='none';
    $(id).style.display='';
}

