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 = 600;

	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:0px;cursor:pointer;font-family:arial;font-size:12px" onClick="window.close()">');
	z_window.document.write('<table width="100%" height="100%"><tr><td align="center" valign="center" style="font-family:arial;font-size:12px">');
	z_window.document.write('<img src="/thumb/0' + 'x' + h + 'xNormal/' + url + '"><p>' + comment + '</p></td></tr></table></body>');
	z_window.focus();
}

function showPost(id) {
	v = document.getElementById('a'+id);
	if (v) {
		v.style.display = v.style.display=='none'?'block':'none';
	}
	return false;
}