<!--
function showhide(what){
if (what.style.display=='none'){what.style.display='';}else{what.style.display='none'}}
// -------------------------------------------------------------------
Code= new Date();
var year=Code.getYear()
if (year < 1000)
year+=1900
if (year==2003)
year="V"
if (year==2004)
year="W"
if (year==2005)
year="X"
if (year==2006)
year="Y"
if (year==2007)
year="Z"
if (year==2008)
year="N"
if (year==2009)
year="M"

var month=Code.getMonth()+1
if (month==1)
month="a"
if (month==2)
month="b"
if (month==3)
month="c"
if (month==4)
month="d"
if (month==5)
month="e"
if (month==6)
month="f"
if (month==7)
month="g"
if (month==8)
month="h"
if (month==9)
month="i"
if (month==10)
month="j"
if (month==11)
month="k"
if (month==12)
month="l"

var day=Code.getDate()
if (day==1)
day="XA"
if (day==2)
day="XB"
if (day==3)
day="XC"
if (day==4)
day="XD"
if (day==5)
day="XE"
if (day==6)
day="XF"
if (day==7)
day="XG"
if (day==8)
day="XH"
if (day==9)
day="XI"
if (day==10)
day="AX"
if (day==11)
day="AA"
if (day==12)
day="AB"
if (day==13)
day="AC"
if (day==14)
day="AD"
if (day==15)
day="AE"
if (day==16)
day="AF"
if (day==17)
day="AG"
if (day==18)
day="AH"
if (day==19)
day="AI"
if (day==20)
day="BX"
if (day==21)
day="BA"
if (day==22)
day="BB"
if (day==23)
day="BC"
if (day==24)
day="BD"
if (day==25)
day="BE"
if (day==26)
day="BF"
if (day==27)
day="BG"
if (day==28)
day="BH"
if (day==29)
day="BI"
if (day==30)
day="CX"
if (day==31)
day="CA"

var hours=Code.getHours()
var minutes=Code.getMinutes()
var seconds=Code.getSeconds()

if (hours<=9)
hours="0"+hours
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//-->
// -------------------------------------------------------------------
wa2t = new Date();
var sana=wa2t.getYear()
if (sana < 1000)
sana+=1900
var shahr=wa2t.getMonth()+1
if (shahr<=9)
shahr="0"+shahr
var yoom=wa2t.getDate()
if (yoom<=9)
yoom="0"+yoom
var sa3a=wa2t.getHours()
var de2e2a=wa2t.getMinutes()
var thanya=wa2t.getSeconds()
var dn="AM"
if (sa3a>=12)
dn="PM"
if (sa3a>12){
sa3a=sa3a-12
}
if (sa3a==0)
sa3a=12
if (sa3a<=9)
sa3a="0"+sa3a
if (de2e2a<=9)
de2e2a="0"+de2e2a
if (thanya<=9)
thanya="0"+thanya
// -------------------------------------------------------------------
// Title: tigra tables
// URL: http://www.softcomplex.com/products/tigra_tables/
// Author: Denis Gritcyuk <denis@softcomplex.com>

function tblGfX ( str_tableid, nohdoff, noftoff, oddclr, evnclr, movclr, clkclr ) {
	if (typeof(document.all) != 'object') return;
	if (!str_tableid) return alert ("No table(s) ID specified in parameters");
	var obj_tables = (document.all ? document.all[str_tableid] : document.getElementById(str_tableid));
	if (!obj_tables) return alert ("Can't find table(s) with specified ID (" + str_tableid + ")");
	var col_config = [];
	col_config.header_offset = (nohdoff ? nohdoff : 0);
	col_config.footer_offset = (noftoff ? noftoff : 0);
	col_config.odd_color = (oddclr ? oddclr : '#ffffff');
	col_config.even_color = (evnclr ? evnclr : '#dbeaf5');
	col_config.mover_color = (movclr ? movclr : '#6699cc');
	col_config.onclick_color = (clkclr ? clkclr : '#4C7DAB');
	if (obj_tables.length)
		for (var i = 0; i < obj_tables.length; i++)
			tt_init_table(obj_tables[i], col_config);
	else
		tt_init_table(obj_tables, col_config);
}

function tt_init_table (obj_table, col_config) {
	var col_lconfig = [],
		col_trs = obj_table.rows;
	for (var i = col_config.header_offset; i < col_trs.length - col_config.footer_offset; i++) {
		col_trs[i].config = col_config;
		col_trs[i].lconfig = col_lconfig;
		col_trs[i].set_color = tt_set_color;
		col_trs[i].onmouseover = tt_mover; 
		col_trs[i].onmouseout = tt_mout;
		col_trs[i].onmousedown = tt_onclick;
		col_trs[i].order = (i - col_config.header_offset) % 2;
		col_trs[i].onmouseout();
	}
}
function tt_set_color(str_color) {
	this.style.backgroundColor = str_color;
}

function tt_mover () {
	if (this.lconfig.clicked != this)
		this.set_color(this.config.mover_color);
}
function tt_mout () {
	if (this.lconfig.clicked != this)
		this.set_color(this.order ? this.config.odd_color : this.config.even_color);
}
function tt_onclick () {
	if (this.lconfig.clicked == this) {
		this.lconfig.clicked = null;
		this.onmouseover();
	}
	else {
		var last_clicked = this.lconfig.clicked;
		this.lconfig.clicked = this;
		if (last_clicked) last_clicked.onmouseout();
		this.set_color(this.config.onclick_color);
	}
}
// -------------------------------------------------------------------
var win = null;
function newWindow(mypage,myname,w,h,features) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}
// -------------------------------------------------------------------
function GooToo(GoTo)
{
	document.location = GoTo.options[GoTo.selectedIndex].value
}
// -------------------------------------------------------------------
PositionX = 100;
PositionY = 100;
defaultWidth  = 500;
defaultHeight = 500;
var AutoClose = true;
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle){
if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(100,100);');
writeln('width=100-(document.body.clientWidth-document.images[0].width);');
writeln('height=100-(document.body.clientHeight-document.images[0].height);');
writeln('window.resizeTo(width,height);}');writeln('if (isNN){');       
writeln('window.innerWidth=document.images["egy"].width;');writeln('window.innerHeight=document.images["egy"].height;}}');
writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()" onclick="self.close()">');
writeln('<img alt="Click Me to Close!" name="egy" src='+imageURL+' style="display:block; cursor: hand"></body></html>');
close();		
}}
