function popup(page){
	called=true;
	window.open(page,"ticket","height=600,width=480,scrollbars=yes toolbar=no")
}

function showImg(path,width,height,target) {
    if (target=="" || target==undefined) target="_imgPopUp";
    if (width=="" || width==undefined) width=500;
    if (height=="" || height==undefined) height=500;
    features = "width="+width+", height="+height+", scrollbars=no status=no resizable=no";
    window_handle = window.open("showImg.asp?img="+path,target,features);
    window_handle.focus(); 

};


function setImg(img) {
	parent.imgtarget.src="loading.gif";
	parent.imgtarget.src=img;
	parent.imgtarget.style.visibility="visible";
}