var get = function(id) { return document.getElementById(id); }

function cmsSwitch() {
	if(event.keyCode == 123) document.location.href = admin_uri;
}

function zoom(src, w, h) {
	var z_window = window.open('about:blank', z_window, 'left=' + ((screen.width - w)/2) + ',top=' + ((screen.height - h)/2 - 50) + ',width=' + (w+20) + ',height=' + (h+20));
	z_window.document.write('<title>Zoom</title><body style="margin:0px;cursor:pointer;" onClick="window.close()">');
	z_window.document.write('<table width="100%" height="100%"><tr><td align="center" valign="center">');
	z_window.document.write('<img src="' + src + '"></td></tr></table></body>');
	z_window.focus();
}

function photo(url, comment) {
	var w = 800;
	var h = 700;

	var z_window = window.open('about:blank', z_window, 'left=' + ((screen.width - w)/2) + ',top=' + ((screen.height - h)/2 - 50) + ',width=' + (w+20) + ',height=' + (h+80));
	z_window.document.write('<title>Zoom</title><body style="margin:10px;cursor:pointer;font-family:arial;font-size:12px;color:#FFF" bgcolor="#40AEE5" onClick="window.close()">');
	z_window.document.write('<div align=center><img src="/templates/images/logo.gif"></div><table width="100%" height="100%"><tr><td align="center" valign="top" style="font-family:arial;font-size:12px">');
	z_window.document.write('<img src="/' + url + '"><p>' + comment + '</p></td></tr></table></body>');
	z_window.focus();
}
