// popup function
	
var parameter = "location=no,menubar=no,directories=no,scrollbars=auto,width=max,resizable=yes";
	
function image_open(number,category,title) 
	{
		var path = category + "/" + number + ".jpg";	  	
	  	var image_window = window.open("",title,parameter);

		image_window.document.write("<html><head><title>" + title +"</title><style type='text/css'>");
		image_window.document.write("<!-- @import url('css/popup.css');--></style></head>");			
		image_window.document.write("<body><div class='page_content'>");
		image_window.document.write("<img src=" + path + " name='artwork' />");			
		image_window.document.write("<div class='copyright'><h1><a href='#' onClick='window.close();'>[Close]</a></h1></div>");									
		image_window.document.write("<div class='copyright'><h1>&#169; Daniel Alekow</h1></div>");						
		image_window.document.write("</div></body></html>");			
		image_window.document.close();
  
	}// popup function
	
var parameter = "location=no,menubar=no,directories=no,scrollbars=yes,width=max,resizable=yes";

function image_open(number,category,title) {
	
	var path = category + "/" + number.toString() + ".jpg";	  	
  	var image_window = window.open("",title,parameter);
	
	with (image_window.document) {

	write("<html><head><title>" + title +"</title><style type='text/css'>");
	write("<!-- @import url('css/popup.css');--></style></head>");			
	write("<body><div class='page_content'>");
	write("<img src=" + path + " name='artwork' />");			
	write("<div class='copyright'><h1><a href='#' onClick='window.close();'>[Close]</a></h1></div>");									
	write("<div class='copyright'><h1>&#169; Daniel Alekow</h1></div>");						
	write("</div></body></html>");			
	close();
		
	}
  
}
