﻿function $(id){return document.getElementById(id);}
function isEmail(email){
　　var pattern = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/;  
　　flag = pattern.test(email);  
　　return flag;
}  
function tips(title,msg){
   Ext.onReady(function(){
       Ext.MessageBox.show({
        title:title,
        msg:msg,
        buttons:{"ok":"好的,我知道了"},
        width:300,
        icon:Ext.MessageBox.INFO,
        progress:true,
        wait:true,
        progressText:"进度条"
      });
   });
}

function showProduct(obj){
    $("child"+obj.id).style.display="block";
    if($("child"+obj.id).innerHTML==""){
        send("getProduct",obj.id);
    }
}

function hidProduct(obj){$("child"+obj.id).style.display="none";}

function showChild(id){
    if(document.getElementById("child"+id).style.display=="none"){
       document.getElementById("child"+id).style.display="block";
    }else if(document.getElementById("child"+id).style.display=="block"){
       document.getElementById("child"+id).style.display="none";
    }
}


function getChild(obj){
     send("getProduct",obj.id);
}


