﻿// JScript 文件
function PreLoadImg()
{
var img=new Image();
img.src="../photo/userimg/"+$get('showphoto_HFNP').value;
img.src="../photo/userimg/"+$get('showphoto_HFPP').value;
}
function ShowPreImg()
{
var imgtemp=new Image();
imgtemp.src="../photo/userimg/"+$get('showphoto_HFPP').value;

var img=$get('showphoto_ImgP');
img.src=imgtemp.src;
img.style.width=imgtemp.width;
img.style.height=imgtemp.height;

}
function ShowNextImg()
{
var img=$get('showphoto_ImgP');
img.src="../photo/userimg/"+$get('showphoto_HFNP').value;
}
function SetConText()
{
$get('showphoto_HFCC').value=$get('showphoto_HFPP').value+$get('showphoto_HFNP').value;
}
