function PageRedirect(pc_action,pc_form)
{
	//alert('action = ' + pc_action);
	//alert('form = ' + pc_form);
		
	document.getElementById(pc_form).action = pc_action;
	document.getElementById(pc_form).submit();
}

function BigImage(pc_ImageName, pc_ImageType)
{
	winstr='window.open("big_image.asp?imagename=' + pc_ImageName + '&imagetype=' + pc_ImageType + '","displaywindow1","width=600,height=500,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,top=0,left=0")';
	eval(winstr);
}