function ShowDoc(doc)
		{		
			var newWindow=window.open(doc, 'popup', 'top=5, left=30,scrollbars=yes, toolbars=no, maximize=yes, resize=yes, width=500m height=450')
			newWindow.focus();
		}	
function ShowURL(URL)
		{
			var newWindow = window.open(URL);
			newWindow.focus();
		}	
