<!-- 
var flag=false; 
function DrawImage(ImgD,w,h){
	if(ImgD.width>0 && ImgD.height>0){ 
	  flag=true; 
	  if(ImgD.width/ImgD.height>1){ 
	  	asWidth(ImgD,w,h);
	  } 
	  else{ 
	   asHeight(ImgD,w,h);
	  } 
	}
}
function asWidth(ImgD,w,h){
	var image=new Image(); 
	image.src=ImgD.src;
	if(image.width>w){
    ImgD.width=w; 
    ImgD.height=(w/image.width)*image.height;
   }else{ 
    ImgD.width=image.width;
    ImgD.height=image.height; 
   }
   if(ImgD.height>h){
   	asHeight(ImgD,w,h);
   }
}

function asHeight(ImgD,w,h){
	var image=new Image(); 
	image.src=ImgD.src;
	if(image.height>h){
    ImgD.height=h; 
    ImgD.width=(h/image.height)*image.width;
   }else{ 
    ImgD.width=image.width;
    ImgD.height=image.height; 
   }
   if(ImgD.width>w){
   	asWidth(ImgD,w,h);
   }
}

function gotoURL(url){
	window.self.location.href=url;
}

function chkIsNull(formName,objName,msg){
	var str=objName;
	var array=new Array();
	var obj£»
	arr=str.split("|");
	for(var i=0;i<arr.length;i++){
		obj=eval("document."+formName+"."+arr[i]);
		if(obj.value.length<1){			
			alert(msg);
			obj.focus();
			return false;
		}
	}
	return true;
}

function shop( string_value ){
	window.open('shop/index_account.asp?id='+ string_value ,'abc','ToolBar=on,scrollbars=yes,location=no,directories=no,status=no,width=700,height=300,top=160 ');
}
//-->