<!-- 
			function OpenImageWindow(url,id,height,width) {
				var rand_name = "image_"+id;
				width = (width  - 0) + 20;
				height = (height  - 0) + 30;
				newWindow = window.open(url, rand_name,
						"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="
						+width+",height="+height,"true");
				newWindow.window.focus();
			}
			function OpenWindow(url, id) {
				var rand_name = "image_"+id;
				window.open(url, rand_name);
			}
			function OpenImageWindowP(url,id,height,width) {
				var rand_name = "image_"+id;
				width = (width  - 0) + 20;
				height = (height  - 0) + 30;
				newWindow = window.open(url, rand_name,
						"toolbar=1,location=0,directories=0,status=1,menubar=1,scrollbars=0,resizable=1,width="
						+width+",height="+height,"true");
				newWindow.window.focus();
				}
				
function PopPic(url) {
		document.getElementById('poppicpic').src = url;
		wid = document.getElementById('poppicpic').width;
		document.getElementById('poppic').style.width = wid+40;
		document.getElementById('poppic').style.visibility = 'visible';
}
			
					// -->
