<!--
// Image Viewer
	function openTViewer(theURL) {
		var mywindow = window.open(theURL,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=400');
		mywindow.location.href = theURL;
		if (mywindow.opener == null) mywindow.opener = self;
	}
	
	function openAWin(theURL) { 
		window.open(theURL,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=340,height=260');
	}

	function openViewer(theURL,scrll,width,height) {
		var mywindow = window.open(theURL,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrll+',resizable=no,width='+width+',height='+height+'');
		mywindow.location.href = theURL;
		if (mywindow.opener == null) mywindow.opener = self;
	}

	function openT2Viewer(theURL,width,height) {
		var mywindow = window.open(theURL,"NewWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height+"");
		mywindow.location.href = theURL;
		if (mywindow.opener == null) mywindow.opener = self;
	}

//-->
