function UploadImage()
{
	window.open("","upload_image");
	document.getElementById( 'entry_form' ).target="upload_image";
	document.getElementById( 'entry_form' ).submit();
}
function SetImageFile( pImgSrc )
{
	document.getElementById( 'preview_image' ).src=pImgSrc;
}
function SetPreview( pImgSrc )
{
	document.getElementById( 'preview_file' ).value=pImgSrc;
}

