function gggt(a){
	if(document.getElementById("price"+a).value==""){
		alert("ÇëÌîÐ´Òª¹ºÂòµÄÊýÁ¿£¡")
		document.getElementById("price"+a).focus()
		return false
		}
else{
	return true
	}


	
		
	}
	function img(a,b,c){
var imgs=new Image();
imgs.src=a.src
w=imgs.width
h=imgs.height
if (w>b || h>c){
if(w/h>b/c){
a.width=b
a.height=h/w*b
}else{
a.height=c
a.width=w/h*c
}
}

}
