/* Хэппи ДжиЭс */

function showFullPicture(url) {
	var h = screen.height;
	var w = screen.width;
	var c = "menubar=1,resizable=0,width=" + w + ",height=" + h + ",scrollbars=1";
	window.open (url,"picwindow",c);
}
function objGlow(obj) {
	document.getElementById(obj).style.color = '#000000';
}
function objUnGlow(obj) {
	document.getElementById(obj).style.color = '#999999';
}