function crop(img){ var new_img = new Image(); new_img.width = img.width; new_img.height = img.height; var stred_w = new_img.width/2; var stred_h = new_img.height/2; var param_w = stred_w-75; var param_h = stred_h-75; new_img.style.position="absolute"; new_img.style.top=param_h+"px"; new_img.style.left=param_w+"px"; new_img.style.display="block"; new_img.style.width="150px"; new_img.style.height="150px"; } ---END--- */ ?>