/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function GetCardDesc(v1,v2,v3){
  var actionURL = 'searchCardDesc.php?selType='+v1+'&selCard_='+v2+'&selPosi='+v3;
  dojo.io.bind({
	   url: actionURL,
	   handler: callbackShowDesc,
	   mimetype: 'text/plain' ,
	   encoding:'utf-8'
	});

}

function callbackShowDesc(p1,p2,p3){
    if(p1== 'error'){
      location.replace('Sorry! System can\'t sent data to server&pageback=memberafterlogin.php&msg_type=System Information');
    }else{
      //closeOnloadPage();
      eval(p2)
    }
}
