function DGoto()
{
	var tmp = $("#DGoto").val();
	if (tmp.length<3)
	{
		$("#imgD").hide();
		return;
	}
	var num = tmp.substr(0,tmp.length-3);
	if (!num>0) num=0;
	var url = "http://www.rfjewelry.com/p/j" + num + "/" + tmp;
	$("#imgD").html('<a class="limg" href="'+url+'.html"><img width="75px" onerror="$(\'#imgD\').hide();" onload="$(\'#imgD\').show();" src="'+url+'.jpg"></a><br /><br />');
}