$(document).ready(function() {
	
})

function showVcodeImage(){
	if($('#vcodeImage').length < 1){
		var h = ['<img class="s3-inline" onclick="changeVCodeImage()" ',
			'src="util/icg?type=passport_vcode" id="vcodeImage"/>',
			'<button class="s3-inline" onclick="changeVCodeImage()">',
			'看不清?</button>'].join("");
		$('#vcode').after(h);
	}
}

function changeVCodeImage(){
	var img = $('#vcodeImage'); 
	if(img.length > 0){
		img.attr('src','util/icg?type=passport_vcode&temp=' + (new Date().getTime().toString(36)));
	}
	return false;
}