
///////////////////////////////////////////////////////
// ImageWizard create dialog 

function doImageDialog(hfImgId)
{
	var p = new Object();

	var v = window.showModalDialog(ImgPickerDialogUrl, null, 
		"scroll:no;center:yes;help:no;status:yes;dialogHeight:480px;dialogWidth:640px");


	if(v && v[0])
	{
		var elem = document.getElementById(hfImgId);
		var html = "<p align=center><img src='" + v[0] + "'></p>";
		elem.value = html;
             return true;
	}
       return false;
}


