function View(path, caption) 
{	
	path = '/view.aspx?path=' + path + '&caption=' + caption;
	wid=window.open(path, 'Img', 'toolbar=no,status=no,directories=no,location=no,scrollbars=no,resizable=yes,width=600,height=600,top=50,left=100');
	if (wid.opener == null) wid.opener = window;
}

function winpop (url,w,h,scroll,resize,center) 
{
	if (center) {
		var winPos = ',top='+((screen.height - h) / 2)+',left='+((screen.width - w) / 2);
	}
	var scrollArg = (scroll == false) ? '' : ',scrollbars=1';
	var resizeArg = (resize == false) ? '' : ',resizable=1';
	flyout = window.open (url,"newin"+scroll+resize+center,"width=" + w + ",height=" + h + scrollArg + resizeArg + winPos);
	flyout.resizeTo(w,h);
	flyout.focus();
}



