// Function to convert input value to Upper case:	
	function toUC(txtInp){
		if (txtInp){
			txtInp.value = txtInp.value.toUpperCase();
		}
	}
	
// 'Preview upload' pop-up functions:	
function editItems(){
	window.opener.document.location.href = '/apps/ifl/arts/apictureofbritain/ifluploader?templatestyle='
	window.close();
}

function confirmItems(){
	window.close();
}	
	



