function checkBrowser(page)
{
	if(navigator.appName == "Microsoft Internet Explorer")
		location.href = page + "_ie.html";
}

function view(filename, backref)
{
	var content = "";

	if(navigator.appName == "Microsoft Internet Explorer")
	{
		content += "<html><head><title>Dormehl Photography - Photo</title><link href='dormehl.css' rel='stylesheet' type='text/css'></head>";
		content += "<body class='main'><div align='center'>";
		content += "<table width='100%' border='0' cellspacing='6'><tr><td><div align='center'>";
		content += "<img src='Pics/title_text_ie.png' width='647' height='83'>";
		content += "</div></td></tr><tr><td><div align='center'>";
		content += "<a href='" + backref + "'><img src='Pics/back_ie.png' width='56' height='35' border='0'></a>";
		content += "</div></td></tr></table>";
		content += "<p><img src='" + filename + "'></p>";
		content += "</div></body></html>";
	}
	else
	{
		content += "<html><head><title>Dormehl Photography - Photo</title><link href='dormehl.css' rel='stylesheet' type='text/css'></head>";
		content += "<body class='main'><div align='center'>";
		content += "<p><img src='Pics/title_text.png' width='647' height='83'></p>";
		content += "<p><a href='" + backref + "'><img src='Pics/Back.png' width='56' height='35' border='0'></a></p>";
		content += "<p><img src='" + filename + "'></p>";
		content += "</div></body></html>";
	}
					
	document.write(content);
	document.close();
}
