	
	function popImg(url, width, height)
	{	
		newwindow=window.open('','','width=' + width + ',height=' + height);
		newwindow.document.writeln('<head>');
		newwindow.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
		newwindow.document.writeln('<meta http-equiv="Content-Style-Type" content="text/css" />');
		newwindow.document.writeln('<link href="theme/green/style.css" rel="stylesheet" type="text/css" media="screen" />');
		newwindow.document.writeln('<title>' + url + '</title>');
		newwindow.document.writeln('</head>');
		newwindow.document.writeln('<body>');
		newwindow.document.writeln('<img onclick="window.close();" src="' + url + '" alt="' + url + '" />');
		newwindow.document.writeln('</body>');
		newwindow.document.writeln('</html>');
		newwindow.document.close();
	}
	
	function popGallery(url)
	{
		window.open (url,"","status=0,scrollbars=0, width=800,height=600");
	}
