// JavaScript Document


function popitup(url, name, w, h) {
	
	var params ='toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width='+w+',height='+h+'';
	newwindow=window.open(url, name, params);
	newwindow.document.write('<html><head><link href="photos.css" rel="stylesheet" type="text/css" \/><\/head>');
	newwindow.document.write('<body><img src="'+url+'"\/><\/body><\/html>');
	newwindow.document.close();
	newwindow.resizeTo(w,h);
	//
	if (window.focus) {newwindow.focus()}
	//
	return false;
}

