//
// Exclusive sibcats.ru site engine
// Essentials
// Version 1.1 (12/06/2004)
// Copyright (C) 2004 Alexey Nashchekin
//

function selectMenu(n)
{
	if (n == activeMenu)
		return false;
	document.getElementById("tmenu"+activeMenu).style.display = "none";
	activeMenu = n;
	document.getElementById("tmenu"+activeMenu).style.display = "block";
	return false;
}
function openwin(flnm, w, h, t)
{
	var p = window.open('text/html', '_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+(w+64)+',height='+(h+64));
	var d = p.document;
	d.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	d.writeln('<HTML>');
	d.writeln('<HEAD>');
	d.writeln('<TITLE>'+(t ? t : 'Photo')+'</TITLE>');
	d.writeln('<LINK rel="stylesheet" type="text/css" href="'+siteRoot+'styles.css" />');
	d.writeln('</HEAD>');
	d.writeln('<BODY style="margin: 0px; padding: 0px; background-color: white;" scroll="no">');
	d.write('<TABLE width="100%" height="100%" cellspacing="0" cellpadding="0"><TR><TD style="text-align: center; vertical-align: middle;" class="galbig">');
	d.write('<SMALL>&nbsp;</SMALL><BR /><A href="" onclick="window.close(); return false;" style="border: 1px solid #C8C8C8;"><IMG src="'+siteRoot+flnm+'" width="'+w+'" height="'+h+'" border="0" alt="" /></A>');
	d.write('<BR /><SMALL style="font-weight: bold;">'+t+'</SMALL>');
	d.write('<BR /><SMALL style="color: #B0B0B0;">Copyright &copy; 2004 Onix Gloria. All rights reserved.</SMALL>');
	d.write('</TD></TR></TABLE>');
	d.writeln('</BODY>');
	d.writeln('</HTML>');
	return false;
}
