/* WfSt - Wlfr copyright 1990-2010 - wlfr /at/ wlfr.nl */

/* GENERAL VARIABLES */

var dist = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';

/* GENERAL SCRIPTS */

function r(n)
{
return Math.floor(Math.random() * n);
}

/* HEAD SCRIPTS */

function allhead()
{
lineplace();
datetime();
timecol();
hvhead();
}

function shorthead()
{
lineplace();
datetime();
timecol();
hvhead();
}

function datetime()
{
dateline = new Date();
secondline = dateline.getSeconds();
minuteline = dateline.getMinutes();
hourline = dateline.getHours();
dayline = dateline.getDate();
monthline = dateline.getMonth();
yearline = dateline.getFullYear();
if (secondline < 10)
{
rsecond = '0' + secondline;
}
else
{
rsecond = secondline;
}
if (minuteline < 10)
{
rminute = '0' + minuteline;
}
else
{
rminute = minuteline;
}
if (hourline < 10)
{
rhour = '0' + hourline;
}
else
{
rhour = hourline;
}
if (dayline < 10)
{
rday = '0' + dayline;
}
else
{
rday = dayline;
}
hmonth = monthline + 1;
if (hmonth < 10)
{
rmonth = '0' + hmonth;
}
else
{
rmonth = hmonth;
}
ryear = yearline;
totaltime = ryear + '' + rmonth + '' + rday + '' + rhour + '' + rminute + '' + rsecond;
}

function lineplace()
{
lpdepth = 10000;
}

function timecol()
{
absday = (hourline * 3600) + (minuteline * 60) + secondline;
maxdaytime = 86400;

if ((absday >= 14400) && (absday < 28800))
{
dayred = 0;
}
if ((absday >= 43200) && (absday < 79200))
{
dayred = 255;
}
if ((absday >= 79200) && (absday < 86400))
{
dayred = parseInt(255 - ((absday - 79200) / 56.25));
}
if ((absday >= 0) && (absday < 14400))
{
dayred = parseInt(127 - ((absday) / 112.5));
}
if ((absday >= 28800) && (absday < 43200))
{
dayred = parseInt((absday - 28800) / 56.25);
}

if (((absday >= 0) && (absday < 14400)) || ((absday >= 72000) && (absday < 86400)))
{
daygreen = 0;
}
if ((absday >= 21600) && (absday < 43200))
{
daygreen = 255;
}
if ((absday >= 43200) && (absday < 72000))
{
daygreen = parseInt(255 - ((absday - 43200) / 112.5));
}
if ((absday >= 14400) && (absday < 21600))
{
daygreen = parseInt((absday - 14400) / 28.125);
}

if ((absday >= 28800) && (absday < 72000))
{
dayblue = 0;
}
if (((absday >= 0) && (absday < 21600)) || ((absday >= 79200) && (absday < 86400)))
{
dayblue = 255;
}
if ((absday >= 21600) && (absday < 28800))
{
dayblue = parseInt(255 - ((absday - 14400) / 28.125));
}
if ((absday >= 72000) && (absday < 79200))
{
dayblue = parseInt((absday - 72000) / 28.125);
}

if ((absday < 0) || (absday >= 86400))
{
dayred = 0;
daygreen = 0;
dayblue = 0;
}

hexarray = new Array ('00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '0a', '0b', '0c', '0d', '0e', '0f', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '1a', '1b', '1c', '1d', '1e', '1f', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '2a', '2b', '2c', '2d', '2e', '2f', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '3a', '3b', '3c', '3d', '3e', '3f', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '4a', '4b', '4c', '4d', '4e', '4f', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '5a', '5b', '5c', '5d', '5e', '5f', '60', '61', '62', '63', '64', '65', '66', '67', '68', '69', '6a', '6b', '6c', '6d', '6e', '6f', '70', '71', '72', '73', '74', '75', '76', '77', '78', '79', '7a', '7b', '7c', '7d', '7e', '7f', '80', '81', '82', '83', '84', '85', '86', '87', '88', '89', '8a', '8b', '8c', '8d', '8e', '8f', '90', '91', '92', '93', '94', '95', '96', '97', '98', '99', '9a', '9b', '9c', '9d', '9e', '9f', 'a0', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'aa', 'ab', 'ac', 'ad', 'ae', 'af', 'b0', 'b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7', 'b8', 'b9', 'ba', 'bb', 'bc', 'bd', 'be', 'bf', 'c0', 'c1', 'c2', 'c3', 'c4', 'c5', 'c6', 'c7', 'c8', 'c9', 'ca', 'cb', 'cc', 'cd', 'ce', 'cf', 'd0', 'd1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'da', 'db', 'dc', 'dd', 'de', 'df', 'e0', 'e1', 'e2', 'e3', 'e4', 'e5', 'e6', 'e7', 'e8', 'e9', 'ea', 'eb', 'ec', 'ed', 'ee', 'ef', 'f0', 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'fa', 'fb', 'fc', 'fd', 'fe', 'ff');

brightcol = '#' + hexarray[parseInt(dayred)] + hexarray[parseInt(daygreen)] + hexarray[parseInt(dayblue)];
}

function hvhead()
{
if (navigator.appName != 'Microsoft Internet Explorer')
{
document.write('<style type=\"text/css\">html,body{height:100%;overflow:hidden;}</style>')
}
}

/* BODY SCRIPTS */

function allbody()
{
soundlines();
timelines();
stylemaker();
mblock();
}

function shortbody()
{
soundlines();
timelines();
stylemaker();
}

function stylemaker()
{
document.write('<style type=\"text/css\">body{background:#ffffff;}body,div,span,td,p,a,b,i,u,code,cite,dfn,em,kbd,samp,strong,var,sub,sup{font-family:Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;text-decoration:none;line-height:11px;}body,div,span,td,p,a,b,i,u,code,cite,dfn,em,kbd,samp,strong,var{font-size:11px;letter-spacing:0px;}sub,sup{font-size:11px;letter-spacing:0px;}body,div,span,td,p,sub,sup{color:#777777;}a:link{color:' + brightcol + ';}a:visited{color:' + brightcol + ';}a:active,a:hover{color:' + brightcol + ';}b{color:#444444;}i{color:#000000;}u{color:#777777;}cite{color:#ffffff;}code{color:#000000;}dfn{color:#000000;}em{color:#000000;}kbd{color:#000000;}samp{color:#000000;}strong{color:#000000;}var{color:#000000;}</style>');
}

function soundlines()
{
if (gdid == 0)
{
document.write('<embed id=\"tick_hl\" src=\"g/_hl.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_hr\" src=\"g/_hr.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_hx\" src=\"g/_hx.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vl\" src=\"g/_vl.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vr\" src=\"g/_vr.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vx\" src=\"g/_vx.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
}
else
{
document.write('<embed id=\"tick_hl\" src=\"../g/_hl.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_hr\" src=\"../g/_hr.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_hx\" src=\"../g/_hx.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vl\" src=\"../g/_vl.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vr\" src=\"../g/_vr.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
document.write('<embed id=\"tick_vx\" src=\"../g/_vx.wav\" loop=\"false\" autostart=\"false\" hidden=\"true\" enablejavascript=\"true\">');
}
}

function playsound(sndsel)
{
var cursound=document.getElementById(sndsel);
cursound.Play();
}

function timelines()
{
montharray = new Array(0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334);
month2array = new Array(0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335);
if (((yearline / 4) == Math.floor(yearline / 4)) && ((yearline / 100) != Math.floor(yearline / 100)))
{
totalday = dayline + month2array[monthline];
totaltotal = 366;
}
else
{
totalday = dayline + montharray[monthline];
totaltotal = 365;
}
reline = Math.floor((((Math.cos((totalday / totaltotal) * (Math.PI * 2)) * -1) + 1) / 2) * 14);
tlineprint = r(reline + 1);
vlineprint = tlineprint + r(2);
hlineprint = reline - tlineprint + r(2);
if (hlineprint == 0)
{
}
if (hlineprint == 1)
{
hrun001();
}
if (hlineprint == 2)
{
hrun001();
hrun002();
}
if (hlineprint == 3)
{
hrun001();
hrun002();
hrun003();
}
if (hlineprint == 4)
{
hrun001();
hrun002();
hrun003();
hrun004();
}
if (hlineprint == 5)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
}
if (hlineprint == 6)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
}
if (hlineprint == 7)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
}
if (hlineprint == 8)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
}
if (hlineprint == 9)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
}
if (hlineprint == 10)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
}
if (hlineprint == 11)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
}
if (hlineprint == 12)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
hrun012();
}
if (hlineprint == 13)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
hrun012();
hrun013();
}
if (hlineprint == 14)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
hrun012();
hrun013();
hrun014();
}
if (hlineprint == 15)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
hrun012();
hrun013();
hrun014();
hrun015();
}
if (hlineprint == 16)
{
hrun001();
hrun002();
hrun003();
hrun004();
hrun005();
hrun006();
hrun007();
hrun008();
hrun009();
hrun010();
hrun011();
hrun012();
hrun013();
hrun014();
hrun015();
hrun016();
}
if (vlineprint == 0)
{
}
if (vlineprint == 1)
{
vrun001();
}
if (vlineprint == 2)
{
vrun001();
vrun002();
}
if (vlineprint == 3)
{
vrun001();
vrun002();
vrun003();
}
if (vlineprint == 4)
{
vrun001();
vrun002();
vrun003();
vrun004();
}
if (vlineprint == 5)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
}
if (vlineprint == 6)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
}
if (vlineprint == 7)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
}
if (vlineprint == 8)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
}
if (vlineprint == 9)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
}
if (vlineprint == 10)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
}
if (vlineprint == 11)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
}
if (vlineprint == 12)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
vrun012();
}
if (vlineprint == 13)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
vrun012();
vrun013();
}
if (vlineprint == 14)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
vrun012();
vrun013();
vrun014();
}
if (vlineprint == 15)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
vrun012();
vrun013();
vrun014();
vrun015();
}
if (vlineprint == 16)
{
vrun001();
vrun002();
vrun003();
vrun004();
vrun005();
vrun006();
vrun007();
vrun008();
vrun009();
vrun010();
vrun011();
vrun012();
vrun013();
vrun014();
vrun015();
vrun016();
}
}

function hrun001()
{
document.write('<style type=\"text/css\">#hline001{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline001\"></span>');
hsp001 = Math.pow(2,(r(9) + 4));
hplace001 = document.getElementById('hline001');
(htotal001 = hplace001.style).backgroundColor = brightcol;
htotal001.width = 1;
ht001 = r(document.body.clientWidth);
hdir001 = r(2);
if (hdir001 > 0)
{
hwritel001();
}
else
{
hwriter001();
}
}

function hwritel001()
{
htotal001.marginLeft = ht001;
if (ht001 < document.body.clientWidth + 10)
{
ht001++;
}
else
{
ht001 = 0;
}
setTimeout('hwritel001()',hsp001);
if (ht001 == 0)
{
playsound('tick_hl');
}
}

function hwriter001()
{
htotal001.marginLeft = ht001;
if (ht001 > -3)
{
ht001--;
}
else
{
ht001 = document.body.clientWidth + 10;
}
setTimeout('hwriter001()',hsp001);
if (ht001 == 0)
{
playsound('tick_hr');
}
}

function vrun001()
{
document.write('<style type=\"text/css\">#vline001{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline001\"></span>');
vsp001 = Math.pow(2,(r(9) + 4));
vplace001 = document.getElementById('vline001');
(vtotal001=vplace001.style).backgroundColor = brightcol;
vtotal001.height = 1;
vt001 = r(document.body.clientHeight);
vdir001 = r(2);
if (vdir001 > 0)
{
vwritel001();
}
else
{
vwriter001();
}
}

function vwritel001()
{
vtotal001.marginTop = vt001;
if (vt001 < document.body.clientHeight + 10)
{
vt001++;
}
else
{
vt001 = 0;
}
setTimeout('vwritel001()',vsp001);
if (vt001 == 0)
{
playsound('tick_vl');
}
}

function vwriter001()
{
vtotal001.marginTop = vt001;
if (vt001 > -3)
{
vt001--;
}
else
{
vt001 = document.body.clientHeight + 10;
}
setTimeout('vwriter001()',vsp001);
if (vt001 == 0)
{
playsound('tick_vr');
}
}

function hrun002()
{
document.write('<style type=\"text/css\">#hline002{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline002\"></span>');
hsp002 = Math.pow(2,(r(9) + 4));
hplace002 = document.getElementById('hline002');
(htotal002 = hplace002.style).backgroundColor = brightcol;
htotal002.width = 1;
ht002 = r(document.body.clientWidth);
hdir002 = r(2);
if (hdir002 > 0)
{
hwritel002();
}
else
{
hwriter002();
}
}

function hwritel002()
{
htotal002.marginLeft = ht002;
if (ht002 < document.body.clientWidth + 10)
{
ht002++;
}
else
{
ht002 = 0;
}
setTimeout('hwritel002()',hsp002);
if (ht002 == 0)
{
playsound('tick_hl');
}
}

function hwriter002()
{
htotal002.marginLeft = ht002;
if (ht002 > -3)
{
ht002--;
}
else
{
ht002 = document.body.clientWidth + 10;
}
setTimeout('hwriter002()',hsp002);
if (ht002 == 0)
{
playsound('tick_hr');
}
}

function vrun002()
{
document.write('<style type=\"text/css\">#vline002{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline002\"></span>');
vsp002 = Math.pow(2,(r(9) + 4));
vplace002 = document.getElementById('vline002');
(vtotal002=vplace002.style).backgroundColor = brightcol;
vtotal002.height = 1;
vt002 = r(document.body.clientHeight);
vdir002 = r(2);
if (vdir002 > 0)
{
vwritel002();
}
else
{
vwriter002();
}
}

function vwritel002()
{
vtotal002.marginTop = vt002;
if (vt002 < document.body.clientHeight + 10)
{
vt002++;
}
else
{
vt002 = 0;
}
setTimeout('vwritel002()',vsp002);
if (vt002 == 0)
{
playsound('tick_vl');
}
}

function vwriter002()
{
vtotal002.marginTop = vt002;
if (vt002 > -3)
{
vt002--;
}
else
{
vt002 = document.body.clientHeight + 10;
}
setTimeout('vwriter002()',vsp002);
if (vt002 == 0)
{
playsound('tick_vr');
}
}

function hrun003()
{
document.write('<style type=\"text/css\">#hline003{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline003\"></span>');
hsp003 = Math.pow(2,(r(9) + 4));
hplace003 = document.getElementById('hline003');
(htotal003 = hplace003.style).backgroundColor = brightcol;
htotal003.width = 1;
ht003 = r(document.body.clientWidth);
hdir003 = r(2);
if (hdir003 > 0)
{
hwritel003();
}
else
{
hwriter003();
}
}

function hwritel003()
{
htotal003.marginLeft = ht003;
if (ht003 < document.body.clientWidth + 10)
{
ht003++;
}
else
{
ht003 = 0;
}
setTimeout('hwritel003()',hsp003);
if (ht003 == 0)
{
playsound('tick_hl');
}
}

function hwriter003()
{
htotal003.marginLeft = ht003;
if (ht003 > -3)
{
ht003--;
}
else
{
ht003 = document.body.clientWidth + 10;
}
setTimeout('hwriter003()',hsp003);
if (ht003 == 0)
{
playsound('tick_hr');
}
}

function vrun003()
{
document.write('<style type=\"text/css\">#vline003{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline003\"></span>');
vsp003 = Math.pow(2,(r(9) + 4));
vplace003 = document.getElementById('vline003');
(vtotal003=vplace003.style).backgroundColor = brightcol;
vtotal003.height = 1;
vt003 = r(document.body.clientHeight);
vdir003 = r(2);
if (vdir003 > 0)
{
vwritel003();
}
else
{
vwriter003();
}
}

function vwritel003()
{
vtotal003.marginTop = vt003;
if (vt003 < document.body.clientHeight + 10)
{
vt003++;
}
else
{
vt003 = 0;
}
setTimeout('vwritel003()',vsp003);
if (vt003 == 0)
{
playsound('tick_vl');
}
}

function vwriter003()
{
vtotal003.marginTop = vt003;
if (vt003 > -3)
{
vt003--;
}
else
{
vt003 = document.body.clientHeight + 10;
}
setTimeout('vwriter003()',vsp003);
if (vt003 == 0)
{
playsound('tick_vr');
}
}

function hrun004()
{
document.write('<style type=\"text/css\">#hline004{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline004\"></span>');
hsp004 = Math.pow(2,(r(9) + 4));
hplace004 = document.getElementById('hline004');
(htotal004 = hplace004.style).backgroundColor = brightcol;
htotal004.width = 1;
ht004 = r(document.body.clientWidth);
hdir004 = r(2);
if (hdir004 > 0)
{
hwritel004();
}
else
{
hwriter004();
}
}

function hwritel004()
{
htotal004.marginLeft = ht004;
if (ht004 < document.body.clientWidth + 10)
{
ht004++;
}
else
{
ht004 = 0;
}
setTimeout('hwritel004()',hsp004);
if (ht004 == 0)
{
playsound('tick_hl');
}
}

function hwriter004()
{
htotal004.marginLeft = ht004;
if (ht004 > -3)
{
ht004--;
}
else
{
ht004 = document.body.clientWidth + 10;
}
setTimeout('hwriter004()',hsp004);
if (ht004 == 0)
{
playsound('tick_hr');
}
}

function vrun004()
{
document.write('<style type=\"text/css\">#vline004{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline004\"></span>');
vsp004 = Math.pow(2,(r(9) + 4));
vplace004 = document.getElementById('vline004');
(vtotal004=vplace004.style).backgroundColor = brightcol;
vtotal004.height = 1;
vt004 = r(document.body.clientHeight);
vdir004 = r(2);
if (vdir004 > 0)
{
vwritel004();
}
else
{
vwriter004();
}
}

function vwritel004()
{
vtotal004.marginTop = vt004;
if (vt004 < document.body.clientHeight + 10)
{
vt004++;
}
else
{
vt004 = 0;
}
setTimeout('vwritel004()',vsp004);
if (vt004 == 0)
{
playsound('tick_vl');
}
}

function vwriter004()
{
vtotal004.marginTop = vt004;
if (vt004 > -3)
{
vt004--;
}
else
{
vt004 = document.body.clientHeight + 10;
}
setTimeout('vwriter004()',vsp004);
if (vt004 == 0)
{
playsound('tick_vr');
}
}

function hrun005()
{
document.write('<style type=\"text/css\">#hline005{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline005\"></span>');
hsp005 = Math.pow(2,(r(9) + 4));
hplace005 = document.getElementById('hline005');
(htotal005 = hplace005.style).backgroundColor = brightcol;
htotal005.width = 1;
ht005 = r(document.body.clientWidth);
hdir005 = r(2);
if (hdir005 > 0)
{
hwritel005();
}
else
{
hwriter005();
}
}

function hwritel005()
{
htotal005.marginLeft = ht005;
if (ht005 < document.body.clientWidth + 10)
{
ht005++;
}
else
{
ht005 = 0;
}
setTimeout('hwritel005()',hsp005);
if (ht005 == 0)
{
playsound('tick_hl');
}
}

function hwriter005()
{
htotal005.marginLeft = ht005;
if (ht005 > -3)
{
ht005--;
}
else
{
ht005 = document.body.clientWidth + 10;
}
setTimeout('hwriter005()',hsp005);
if (ht005 == 0)
{
playsound('tick_hr');
}
}

function vrun005()
{
document.write('<style type=\"text/css\">#vline005{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline005\"></span>');
vsp005 = Math.pow(2,(r(9) + 4));
vplace005 = document.getElementById('vline005');
(vtotal005=vplace005.style).backgroundColor = brightcol;
vtotal005.height = 1;
vt005 = r(document.body.clientHeight);
vdir005 = r(2);
if (vdir005 > 0)
{
vwritel005();
}
else
{
vwriter005();
}
}

function vwritel005()
{
vtotal005.marginTop = vt005;
if (vt005 < document.body.clientHeight + 10)
{
vt005++;
}
else
{
vt005 = 0;
}
setTimeout('vwritel005()',vsp005);
if (vt005 == 0)
{
playsound('tick_vl');
}
}

function vwriter005()
{
vtotal005.marginTop = vt005;
if (vt005 > -3)
{
vt005--;
}
else
{
vt005 = document.body.clientHeight + 10;
}
setTimeout('vwriter005()',vsp005);
if (vt005 == 0)
{
playsound('tick_vr');
}
}

function hrun006()
{
document.write('<style type=\"text/css\">#hline006{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline006\"></span>');
hsp006 = Math.pow(2,(r(9) + 4));
hplace006 = document.getElementById('hline006');
(htotal006 = hplace006.style).backgroundColor = brightcol;
htotal006.width = 1;
ht006 = r(document.body.clientWidth);
hdir006 = r(2);
if (hdir006 > 0)
{
hwritel006();
}
else
{
hwriter006();
}
}

function hwritel006()
{
htotal006.marginLeft = ht006;
if (ht006 < document.body.clientWidth + 10)
{
ht006++;
}
else
{
ht006 = 0;
}
setTimeout('hwritel006()',hsp006);
if (ht006 == 0)
{
playsound('tick_hl');
}
}

function hwriter006()
{
htotal006.marginLeft = ht006;
if (ht006 > -3)
{
ht006--;
}
else
{
ht006 = document.body.clientWidth + 10;
}
setTimeout('hwriter006()',hsp006);
if (ht006 == 0)
{
playsound('tick_hr');
}
}

function vrun006()
{
document.write('<style type=\"text/css\">#vline006{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline006\"></span>');
vsp006 = Math.pow(2,(r(9) + 4));
vplace006 = document.getElementById('vline006');
(vtotal006=vplace006.style).backgroundColor = brightcol;
vtotal006.height = 1;
vt006 = r(document.body.clientHeight);
vdir006 = r(2);
if (vdir006 > 0)
{
vwritel006();
}
else
{
vwriter006();
}
}

function vwritel006()
{
vtotal006.marginTop = vt006;
if (vt006 < document.body.clientHeight + 10)
{
vt006++;
}
else
{
vt006 = 0;
}
setTimeout('vwritel006()',vsp006);
if (vt006 == 0)
{
playsound('tick_vl');
}
}

function vwriter006()
{
vtotal006.marginTop = vt006;
if (vt006 > -3)
{
vt006--;
}
else
{
vt006 = document.body.clientHeight + 10;
}
setTimeout('vwriter006()',vsp006);
if (vt006 == 0)
{
playsound('tick_vr');
}
}

function hrun007()
{
document.write('<style type=\"text/css\">#hline007{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline007\"></span>');
hsp007 = Math.pow(2,(r(9) + 4));
hplace007 = document.getElementById('hline007');
(htotal007 = hplace007.style).backgroundColor = brightcol;
htotal007.width = 1;
ht007 = r(document.body.clientWidth);
hdir007 = r(2);
if (hdir007 > 0)
{
hwritel007();
}
else
{
hwriter007();
}
}

function hwritel007()
{
htotal007.marginLeft = ht007;
if (ht007 < document.body.clientWidth + 10)
{
ht007++;
}
else
{
ht007 = 0;
}
setTimeout('hwritel007()',hsp007);
if (ht007 == 0)
{
playsound('tick_hl');
}
}

function hwriter007()
{
htotal007.marginLeft = ht007;
if (ht007 > -3)
{
ht007--;
}
else
{
ht007 = document.body.clientWidth + 10;
}
setTimeout('hwriter007()',hsp007);
if (ht007 == 0)
{
playsound('tick_hr');
}
}

function vrun007()
{
document.write('<style type=\"text/css\">#vline007{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline007\"></span>');
vsp007 = Math.pow(2,(r(9) + 4));
vplace007 = document.getElementById('vline007');
(vtotal007=vplace007.style).backgroundColor = brightcol;
vtotal007.height = 1;
vt007 = r(document.body.clientHeight);
vdir007 = r(2);
if (vdir007 > 0)
{
vwritel007();
}
else
{
vwriter007();
}
}

function vwritel007()
{
vtotal007.marginTop = vt007;
if (vt007 < document.body.clientHeight + 10)
{
vt007++;
}
else
{
vt007 = 0;
}
setTimeout('vwritel007()',vsp007);
if (vt007 == 0)
{
playsound('tick_vl');
}
}

function vwriter007()
{
vtotal007.marginTop = vt007;
if (vt007 > -3)
{
vt007--;
}
else
{
vt007 = document.body.clientHeight + 10;
}
setTimeout('vwriter007()',vsp007);
if (vt007 == 0)
{
playsound('tick_vr');
}
}

function hrun008()
{
document.write('<style type=\"text/css\">#hline008{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline008\"></span>');
hsp008 = Math.pow(2,(r(9) + 4));
hplace008 = document.getElementById('hline008');
(htotal008 = hplace008.style).backgroundColor = brightcol;
htotal008.width = 1;
ht008 = r(document.body.clientWidth);
hdir008 = r(2);
if (hdir008 > 0)
{
hwritel008();
}
else
{
hwriter008();
}
}

function hwritel008()
{
htotal008.marginLeft = ht008;
if (ht008 < document.body.clientWidth + 10)
{
ht008++;
}
else
{
ht008 = 0;
}
setTimeout('hwritel008()',hsp008);
if (ht008 == 0)
{
playsound('tick_hl');
}
}

function hwriter008()
{
htotal008.marginLeft = ht008;
if (ht008 > -3)
{
ht008--;
}
else
{
ht008 = document.body.clientWidth + 10;
}
setTimeout('hwriter008()',hsp008);
if (ht008 == 0)
{
playsound('tick_hr');
}
}

function vrun008()
{
document.write('<style type=\"text/css\">#vline008{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline008\"></span>');
vsp008 = Math.pow(2,(r(9) + 4));
vplace008 = document.getElementById('vline008');
(vtotal008=vplace008.style).backgroundColor = brightcol;
vtotal008.height = 1;
vt008 = r(document.body.clientHeight);
vdir008 = r(2);
if (vdir008 > 0)
{
vwritel008();
}
else
{
vwriter008();
}
}

function vwritel008()
{
vtotal008.marginTop = vt008;
if (vt008 < document.body.clientHeight + 10)
{
vt008++;
}
else
{
vt008 = 0;
}
setTimeout('vwritel008()',vsp008);
if (vt008 == 0)
{
playsound('tick_vl');
}
}

function vwriter008()
{
vtotal008.marginTop = vt008;
if (vt008 > -3)
{
vt008--;
}
else
{
vt008 = document.body.clientHeight + 10;
}
setTimeout('vwriter008()',vsp008);
if (vt008 == 0)
{
playsound('tick_vr');
}
}

function hrun009()
{
document.write('<style type=\"text/css\">#hline009{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline009\"></span>');
hsp009 = Math.pow(2,(r(9) + 4));
hplace009 = document.getElementById('hline009');
(htotal009 = hplace009.style).backgroundColor = brightcol;
htotal009.width = 1;
ht009 = r(document.body.clientWidth);
hdir009 = r(2);
if (hdir009 > 0)
{
hwritel009();
}
else
{
hwriter009();
}
}

function hwritel009()
{
htotal009.marginLeft = ht009;
if (ht009 < document.body.clientWidth + 10)
{
ht009++;
}
else
{
ht009 = 0;
}
setTimeout('hwritel009()',hsp009);
if (ht009 == 0)
{
playsound('tick_hl');
}
}

function hwriter009()
{
htotal009.marginLeft = ht009;
if (ht009 > -3)
{
ht009--;
}
else
{
ht009 = document.body.clientWidth + 10;
}
setTimeout('hwriter009()',hsp009);
if (ht009 == 0)
{
playsound('tick_hr');
}
}

function vrun009()
{
document.write('<style type=\"text/css\">#vline009{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline009\"></span>');
vsp009 = Math.pow(2,(r(9) + 4));
vplace009 = document.getElementById('vline009');
(vtotal009=vplace009.style).backgroundColor = brightcol;
vtotal009.height = 1;
vt009 = r(document.body.clientHeight);
vdir009 = r(2);
if (vdir009 > 0)
{
vwritel009();
}
else
{
vwriter009();
}
}

function vwritel009()
{
vtotal009.marginTop = vt009;
if (vt009 < document.body.clientHeight + 10)
{
vt009++;
}
else
{
vt009 = 0;
}
setTimeout('vwritel009()',vsp009);
if (vt009 == 0)
{
playsound('tick_vl');
}
}

function vwriter009()
{
vtotal009.marginTop = vt009;
if (vt009 > -3)
{
vt009--;
}
else
{
vt009 = document.body.clientHeight + 10;
}
setTimeout('vwriter009()',vsp009);
if (vt009 == 0)
{
playsound('tick_vr');
}
}

function hrun010()
{
document.write('<style type=\"text/css\">#hline010{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline010\"></span>');
hsp010 = Math.pow(2,(r(9) + 4));
hplace010 = document.getElementById('hline010');
(htotal010 = hplace010.style).backgroundColor = brightcol;
htotal010.width = 1;
ht010 = r(document.body.clientWidth);
hdir010 = r(2);
if (hdir010 > 0)
{
hwritel010();
}
else
{
hwriter010();
}
}

function hwritel010()
{
htotal010.marginLeft = ht010;
if (ht010 < document.body.clientWidth + 10)
{
ht010++;
}
else
{
ht010 = 0;
}
setTimeout('hwritel010()',hsp010);
if (ht010 == 0)
{
playsound('tick_hl');
}
}

function hwriter010()
{
htotal010.marginLeft = ht010;
if (ht010 > -3)
{
ht010--;
}
else
{
ht010 = document.body.clientWidth + 10;
}
setTimeout('hwriter010()',hsp010);
if (ht010 == 0)
{
playsound('tick_hr');
}
}

function vrun010()
{
document.write('<style type=\"text/css\">#vline010{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline010\"></span>');
vsp010 = Math.pow(2,(r(9) + 4));
vplace010 = document.getElementById('vline010');
(vtotal010=vplace010.style).backgroundColor = brightcol;
vtotal010.height = 1;
vt010 = r(document.body.clientHeight);
vdir010 = r(2);
if (vdir010 > 0)
{
vwritel010();
}
else
{
vwriter010();
}
}

function vwritel010()
{
vtotal010.marginTop = vt010;
if (vt010 < document.body.clientHeight + 10)
{
vt010++;
}
else
{
vt010 = 0;
}
setTimeout('vwritel010()',vsp010);
if (vt010 == 0)
{
playsound('tick_vl');
}
}

function vwriter010()
{
vtotal010.marginTop = vt010;
if (vt010 > -3)
{
vt010--;
}
else
{
vt010 = document.body.clientHeight + 10;
}
setTimeout('vwriter010()',vsp010);
if (vt010 == 0)
{
playsound('tick_vr');
}
}

function hrun011()
{
document.write('<style type=\"text/css\">#hline011{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline011\"></span>');
hsp011 = Math.pow(2,(r(9) + 4));
hplace011 = document.getElementById('hline011');
(htotal011 = hplace011.style).backgroundColor = brightcol;
htotal011.width = 1;
ht011 = r(document.body.clientWidth);
hdir011 = r(2);
if (hdir011 > 0)
{
hwritel011();
}
else
{
hwriter011();
}
}

function hwritel011()
{
htotal011.marginLeft = ht011;
if (ht011 < document.body.clientWidth + 10)
{
ht011++;
}
else
{
ht011 = 0;
}
setTimeout('hwritel011()',hsp011);
if (ht011 == 0)
{
playsound('tick_hl');
}
}

function hwriter011()
{
htotal011.marginLeft = ht011;
if (ht011 > -3)
{
ht011--;
}
else
{
ht011 = document.body.clientWidth + 10;
}
setTimeout('hwriter011()',hsp011);
if (ht011 == 0)
{
playsound('tick_hr');
}
}

function vrun011()
{
document.write('<style type=\"text/css\">#vline011{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline011\"></span>');
vsp011 = Math.pow(2,(r(9) + 4));
vplace011 = document.getElementById('vline011');
(vtotal011=vplace011.style).backgroundColor = brightcol;
vtotal011.height = 1;
vt011 = r(document.body.clientHeight);
vdir011 = r(2);
if (vdir011 > 0)
{
vwritel011();
}
else
{
vwriter011();
}
}

function vwritel011()
{
vtotal011.marginTop = vt011;
if (vt011 < document.body.clientHeight + 10)
{
vt011++;
}
else
{
vt011 = 0;
}
setTimeout('vwritel011()',vsp011);
if (vt011 == 0)
{
playsound('tick_vl');
}
}

function vwriter011()
{
vtotal011.marginTop = vt011;
if (vt011 > -3)
{
vt011--;
}
else
{
vt011 = document.body.clientHeight + 10;
}
setTimeout('vwriter011()',vsp011);
if (vt011 == 0)
{
playsound('tick_vr');
}
}

function hrun012()
{
document.write('<style type=\"text/css\">#hline012{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline012\"></span>');
hsp012 = Math.pow(2,(r(9) + 4));
hplace012 = document.getElementById('hline012');
(htotal012 = hplace012.style).backgroundColor = brightcol;
htotal012.width = 1;
ht012 = r(document.body.clientWidth);
hdir012 = r(2);
if (hdir012 > 0)
{
hwritel012();
}
else
{
hwriter012();
}
}

function hwritel012()
{
htotal012.marginLeft = ht012;
if (ht012 < document.body.clientWidth + 10)
{
ht012++;
}
else
{
ht012 = 0;
}
setTimeout('hwritel012()',hsp012);
if (ht012 == 0)
{
playsound('tick_hl');
}
}

function hwriter012()
{
htotal012.marginLeft = ht012;
if (ht012 > -3)
{
ht012--;
}
else
{
ht012 = document.body.clientWidth + 10;
}
setTimeout('hwriter012()',hsp012);
if (ht012 == 0)
{
playsound('tick_hr');
}
}

function vrun012()
{
document.write('<style type=\"text/css\">#vline012{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline012\"></span>');
vsp012 = Math.pow(2,(r(9) + 4));
vplace012 = document.getElementById('vline012');
(vtotal012=vplace012.style).backgroundColor = brightcol;
vtotal012.height = 1;
vt012 = r(document.body.clientHeight);
vdir012 = r(2);
if (vdir012 > 0)
{
vwritel012();
}
else
{
vwriter012();
}
}

function vwritel012()
{
vtotal012.marginTop = vt012;
if (vt012 < document.body.clientHeight + 10)
{
vt012++;
}
else
{
vt012 = 0;
}
setTimeout('vwritel012()',vsp012);
if (vt012 == 0)
{
playsound('tick_vl');
}
}

function vwriter012()
{
vtotal012.marginTop = vt012;
if (vt012 > -3)
{
vt012--;
}
else
{
vt012 = document.body.clientHeight + 10;
}
setTimeout('vwriter012()',vsp012);
if (vt012 == 0)
{
playsound('tick_vr');
}
}

function hrun013()
{
document.write('<style type=\"text/css\">#hline013{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline013\"></span>');
hsp013 = Math.pow(2,(r(9) + 4));
hplace013 = document.getElementById('hline013');
(htotal013 = hplace013.style).backgroundColor = brightcol;
htotal013.width = 1;
ht013 = r(document.body.clientWidth);
hdir013 = r(2);
if (hdir013 > 0)
{
hwritel013();
}
else
{
hwriter013();
}
}

function hwritel013()
{
htotal013.marginLeft = ht013;
if (ht013 < document.body.clientWidth + 10)
{
ht013++;
}
else
{
ht013 = 0;
}
setTimeout('hwritel013()',hsp013);
if (ht013 == 0)
{
playsound('tick_hl');
}
}

function hwriter013()
{
htotal013.marginLeft = ht013;
if (ht013 > -3)
{
ht013--;
}
else
{
ht013 = document.body.clientWidth + 10;
}
setTimeout('hwriter013()',hsp013);
if (ht013 == 0)
{
playsound('tick_hr');
}
}

function vrun013()
{
document.write('<style type=\"text/css\">#vline013{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline013\"></span>');
vsp013 = Math.pow(2,(r(9) + 4));
vplace013 = document.getElementById('vline013');
(vtotal013=vplace013.style).backgroundColor = brightcol;
vtotal013.height = 1;
vt013 = r(document.body.clientHeight);
vdir013 = r(2);
if (vdir013 > 0)
{
vwritel013();
}
else
{
vwriter013();
}
}

function vwritel013()
{
vtotal013.marginTop = vt013;
if (vt013 < document.body.clientHeight + 10)
{
vt013++;
}
else
{
vt013 = 0;
}
setTimeout('vwritel013()',vsp013);
if (vt013 == 0)
{
playsound('tick_vl');
}
}

function vwriter013()
{
vtotal013.marginTop = vt013;
if (vt013 > -3)
{
vt013--;
}
else
{
vt013 = document.body.clientHeight + 10;
}
setTimeout('vwriter013()',vsp013);
if (vt013 == 0)
{
playsound('tick_vr');
}
}

function hrun014()
{
document.write('<style type=\"text/css\">#hline014{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline014\"></span>');
hsp014 = Math.pow(2,(r(9) + 4));
hplace014 = document.getElementById('hline014');
(htotal014 = hplace014.style).backgroundColor = brightcol;
htotal014.width = 1;
ht014 = r(document.body.clientWidth);
hdir014 = r(2);
if (hdir014 > 0)
{
hwritel014();
}
else
{
hwriter014();
}
}

function hwritel014()
{
htotal014.marginLeft = ht014;
if (ht014 < document.body.clientWidth + 10)
{
ht014++;
}
else
{
ht014 = 0;
}
setTimeout('hwritel014()',hsp014);
if (ht014 == 0)
{
playsound('tick_hl');
}
}

function hwriter014()
{
htotal014.marginLeft = ht014;
if (ht014 > -3)
{
ht014--;
}
else
{
ht014 = document.body.clientWidth + 10;
}
setTimeout('hwriter014()',hsp014);
if (ht014 == 0)
{
playsound('tick_hr');
}
}

function vrun014()
{
document.write('<style type=\"text/css\">#vline014{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline014\"></span>');
vsp014 = Math.pow(2,(r(9) + 4));
vplace014 = document.getElementById('vline014');
(vtotal014=vplace014.style).backgroundColor = brightcol;
vtotal014.height = 1;
vt014 = r(document.body.clientHeight);
vdir014 = r(2);
if (vdir014 > 0)
{
vwritel014();
}
else
{
vwriter014();
}
}

function vwritel014()
{
vtotal014.marginTop = vt014;
if (vt014 < document.body.clientHeight + 10)
{
vt014++;
}
else
{
vt014 = 0;
}
setTimeout('vwritel014()',vsp014);
if (vt014 == 0)
{
playsound('tick_vl');
}
}

function vwriter014()
{
vtotal014.marginTop = vt014;
if (vt014 > -3)
{
vt014--;
}
else
{
vt014 = document.body.clientHeight + 10;
}
setTimeout('vwriter014()',vsp014);
if (vt014 == 0)
{
playsound('tick_vr');
}
}

function hrun015()
{
document.write('<style type=\"text/css\">#hline015{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline015\"></span>');
hsp015 = Math.pow(2,(r(9) + 4));
hplace015 = document.getElementById('hline015');
(htotal015 = hplace015.style).backgroundColor = brightcol;
htotal015.width = 1;
ht015 = r(document.body.clientWidth);
hdir015 = r(2);
if (hdir015 > 0)
{
hwritel015();
}
else
{
hwriter015();
}
}

function hwritel015()
{
htotal015.marginLeft = ht015;
if (ht015 < document.body.clientWidth + 10)
{
ht015++;
}
else
{
ht015 = 0;
}
setTimeout('hwritel015()',hsp015);
if (ht015 == 0)
{
playsound('tick_hl');
}
}

function hwriter015()
{
htotal015.marginLeft = ht015;
if (ht015 > -3)
{
ht015--;
}
else
{
ht015 = document.body.clientWidth + 10;
}
setTimeout('hwriter015()',hsp015);
if (ht015 == 0)
{
playsound('tick_hr');
}
}

function vrun015()
{
document.write('<style type=\"text/css\">#vline015{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline015\"></span>');
vsp015 = Math.pow(2,(r(9) + 4));
vplace015 = document.getElementById('vline015');
(vtotal015=vplace015.style).backgroundColor = brightcol;
vtotal015.height = 1;
vt015 = r(document.body.clientHeight);
vdir015 = r(2);
if (vdir015 > 0)
{
vwritel015();
}
else
{
vwriter015();
}
}

function vwritel015()
{
vtotal015.marginTop = vt015;
if (vt015 < document.body.clientHeight + 10)
{
vt015++;
}
else
{
vt015 = 0;
}
setTimeout('vwritel015()',vsp015);
if (vt015 == 0)
{
playsound('tick_vl');
}
}

function vwriter015()
{
vtotal015.marginTop = vt015;
if (vt015 > -3)
{
vt015--;
}
else
{
vt015 = document.body.clientHeight + 10;
}
setTimeout('vwriter015()',vsp015);
if (vt015 == 0)
{
playsound('tick_vr');
}
}

function hrun016()
{
document.write('<style type=\"text/css\">#hline016{height:120%;width:1px;margin-top:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"hline016\"></span>');
hsp016 = Math.pow(2,(r(9) + 4));
hplace016 = document.getElementById('hline016');
(htotal016 = hplace016.style).backgroundColor = brightcol;
htotal016.width = 1;
ht016 = r(document.body.clientWidth);
hdir016 = r(2);
if (hdir016 > 0)
{
hwritel016();
}
else
{
hwriter016();
}
}

function hwritel016()
{
htotal016.marginLeft = ht016;
if (ht016 < document.body.clientWidth + 10)
{
ht016++;
}
else
{
ht016 = 0;
}
setTimeout('hwritel016()',hsp016);
if (ht016 == 0)
{
playsound('tick_hl');
}
}

function hwriter016()
{
htotal016.marginLeft = ht016;
if (ht016 > -3)
{
ht016--;
}
else
{
ht016 = document.body.clientWidth + 10;
}
setTimeout('hwriter016()',hsp016);
if (ht016 == 0)
{
playsound('tick_hr');
}
}

function vrun016()
{
document.write('<style type=\"text/css\">#vline016{width:120%;height:1px;margin:0;position:absolute;top:0px;left:0px;z-index:' + lpdepth + ';}</style>');
document.write('<span id=\"vline016\"></span>');
vsp016 = Math.pow(2,(r(9) + 4));
vplace016 = document.getElementById('vline016');
(vtotal016=vplace016.style).backgroundColor = brightcol;
vtotal016.height = 1;
vt016 = r(document.body.clientHeight);
vdir016 = r(2);
if (vdir016 > 0)
{
vwritel016();
}
else
{
vwriter016();
}
}

function vwritel016()
{
vtotal016.marginTop = vt016;
if (vt016 < document.body.clientHeight + 10)
{
vt016++;
}
else
{
vt016 = 0;
}
setTimeout('vwritel016()',vsp016);
if (vt016 == 0)
{
playsound('tick_vl');
}
}

function vwriter016()
{
vtotal016.marginTop = vt016;
if (vt016 > -3)
{
vt016--;
}
else
{
vt016 = document.body.clientHeight + 10;
}
setTimeout('vwriter016()',vsp016);
if (vt016 == 0)
{
playsound('tick_vr');
}
}

function mblock()
{
if (glid == 2)
{
glid2 = 1;
}

else
{
glid2 = 2;
}

mmid1 = '';
mmid2 = 'WfSt' + dist + '&uarr;' + updd + '&uarr;'+ dist + 'v' + vnum + dist + '&darr;' + totaltime + '&darr;';
mmid3 = '<i>Wlfr</i>';
mmid5 = '';

if (glid == 0)
{
mmid4 = '<a href=\"p/000100000000e.html\">English</a>' + dist + '<a href=\"p/000100000000n.html\">Nederlands</a>';
}

else
{
mmid4 = '<a href=\"030100000000' + languagearray[glid] + '.html\">' + trprojectsarray[glid] + '</a>' + dist + '<a href=\"010100000000' + languagearray[glid] + '.html\">' + trinformationarray[glid] + '</a>' + dist + '<a href=\"020100000000' + languagearray[glid] + '.html\">' + trnewsarray[glid] + '</a>' + dist + '<a href=\"../index.html\">' + trhomearray[glid] + '</a>' + dist + '<a href=\"' + metaarray[gmid] + deptharray[gdid] + pnumberarray[gpid] + '0000' + languagearray[glid2] + '.html\">' + languagelongarray[glid2] + '</a>';
}

document.write('<style type=\"text/css\">#mblock{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 50) + 'px;left:' + (parseInt(document.body.clientWidth / 2) * -1) + 'px;z-index:100;width:' + (document.body.clientWidth * 2) + 'px;text-align:center;vertical-align:middle;}</style>');
document.write('<span id=\"mblock\"><nobr>');
for (trep = 0; trep < (parseInt(document.body.clientWidth / (mmid1.length + 1)) + 3); trep++)
{
document.write(mmid1 + dist);
}
document.write('</nobr><br />&nbsp;<br /><nobr>');
for (trep = 0; trep < (parseInt(document.body.clientWidth / (mmid2.length + 1)) + 3); trep++)
{
document.write(mmid2 + dist);
}
document.write('</nobr><br />&nbsp;<br /><nobr>');
for (trep = 0; trep < (parseInt(document.body.clientWidth / (mmid3.length + 1)) + 3); trep++)
{
document.write(mmid3 + dist);
}
document.write('</nobr><br />&nbsp;<br /><nobr>');
for (trep = 0; trep < (parseInt(document.body.clientWidth / (mmid4.length + 1)) + 3); trep++)
{
document.write(mmid4 + dist);
}
document.write('</nobr><br />&nbsp;<br /><nobr>');
for (trep = 0; trep < (parseInt(document.body.clientWidth / (mmid5.length + 1)) + 3); trep++)
{
document.write(mmid5 + dist);
}
document.write('</nobr></span>');
}

function cblock(ctop1,ctop2,ctop3,ctop4,ctop5,ctop6,ctop7,ctop8,cbot1,cbot2,cmid1)
{
bvline();
document.write('<style type=\"text/css\">#cblocktop{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:80;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"cblocktop\">' + ctop1 + '<br />' + ctop2 + '<br />' + ctop3 + '<br />' + ctop4 + '<br />' + ctop5 + '<br />' + ctop6 + '<br />' + ctop7 + '<br />' + ctop8 + '</span>');
document.write('<style type=\"text/css\">#cblockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"cblockbot\">' + cbot1 + '<br /><br />' + cbot2 + '</span>');
document.write('<style type=\"text/css\">#cblockmid{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 139) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:80;width:102px;height:78px;text-align:left;}</style>');
if (cmid1 != '')
{
bhline();
document.write('<span id=\"cblockmid\"><img src=\"../g/' + cmid1 + '\" width=\"102\" height=\"78\" alt=\"\" /></span>');
}
}

function tblock(ttop1,tbot1)
{
bvline();
document.write('<style type=\"text/css\">#tblocktop{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:80;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"tblocktop\"><br /><br /><br /><br /><br /><br /><br /><i>' + ttop1 + '</i></span>');
document.write('<style type=\"text/css\">#tblockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"tblockbot\">' + tbot1 + '</span>');
}

function ublock()
{
bvline();
document.write('<style type=\"text/css\">#ublocktop{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:80;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"ublocktop\"><br /><br /><br /><br /><br /><br /><br /><i>Wlfr projects</i></span>');
document.write('<style type=\"text/css\">#ublockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"ublockbot\">');
for(ax=0;ax<pnumberarray.length;ax++)
{
document.write('<nobr><a href=\"' + metaarray[gmid] + '02' + pnumberarray[ax] + '0000' + languagearray[glid] + '.html\" alt=\"' + pnameearray[ax] + '\">' + pnameearray[ax] + '</a>' + dist + '</nobr> ');
}
document.write('</span>');
}

function iblock(itop1,itop2,itop3,itop4,itop5,itop6,ibot1,ibot2,imid1)
{
bvline();
document.write('<style type=\"text/css\">#iblocktop{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2) + 75) + 'px;z-index:80;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"iblocktop\"><br /><i>' + itop1 + '</i><br /><i>' + itop2 + '</i><br /><i>' + itop3 + '</i><br /><i>' + itop4 + '</i><br /><i>' + itop5 + '</i><br /><br /></span>');
document.write('<style type=\"text/css\">#iblocktit{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:82;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"iblocktit\"><br />Title<br />Personnel<br />Media<br />Dimensions<br />Premiere<br /><br /><i>Wlfr Project no.&nbsp;' + itop6 + '</i></span>');
document.write('<style type=\"text/css\">#iblockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"iblockbot\">' + ibot1 + '<br /><br />' + ibot2 + '</span>');
document.write('<style type=\"text/css\">#iblockmid{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 139) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:80;width:102px;height:78px;text-align:left;}</style>');
if (imid1 != '')
{
bhline();
document.write('<span id=\"iblockmid\"><img src=\"../g/' + imid1 + '\" width=\"102\" height=\"78\" alt=\"\" /></span>');
}
}

function inoutblock()
{
if (document.images)
{
outblocksm = new Image();
outblocksm.src = "../g/_grid.png";
inblocksm = new Image();
inblocksm.src = "../g/" + pshortarray[gpid] + "-s001.jpg";
outblockla = new Image();
outblockla.src = "../g/_empty.png";
inblockla = new Image();
inblockla.src = "../g/" + pshortarray[gpid] + "-s001.jpg";
}
}

function goinblock()
{
if (document.images)
{
document["smim"].src = outblocksm.src
document["laim"].src = inblockla.src
}
}

function gooutblock()
{
if (document.images) {
document["smim"].src = inblocksm.src
document["laim"].src = outblockla.src
}
}

function jblock()
{
bvline();
inoutblock();
winheight = document.body.clientHeight;
winwidth = document.body.clientWidth;

if (glid == 2)
{
if (pnamearray[gpid] == pnamenarray[gpid])
{
pname = pnamenarray[gpid];
}
else
{
pname = pnamenarray[gpid] + ' (' + pnamearray[gpid] + ')';
}
pperson = ppersonarray[gpid];
pmedium = pmediumnarray[gpid];
pdate = pdatenarray[gpid];
psdescr = psdescrnarray[gpid];
}
else
{
if (pnamearray[gpid] == pnameearray[gpid])
{
pname = pnameearray[gpid];
}
else
{
pname = pnameearray[gpid] + ' (' + pnamearray[gpid] + ')';
}
pperson = ppersonarray[gpid];
pmedium = pmediumearray[gpid];
pdate = pdateearray[gpid];
psdescr = psdescrearray[gpid];
}

tpname = trtitlearray[glid];
tpperson = trpersonnelarray[glid];
tpmedium = trobjectarray[glid];
tpdate = trpremierearray[glid];

if ((document.body.clientHeight * 4)>(document.body.clientWidth * 3))
{
picheight = winheight;
picwidth = parseInt((winheight / 3) * 4);
}
else
{
picheight = parseInt((winwidth / 4) * 3);
picwidth = winwidth;
}

document.write('<style type=\"text/css\">#jblocktop{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2) + 75) + 'px;z-index:80;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"jblocktop\"><br /><i>' + pname + '</i><br /><i>' + pperson + '</i><br /><i>' + pmedium + '</i><br /><i>' + pdate + '</i><br /><br /></span>');
document.write('<style type=\"text/css\">#jblocktit{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 149) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:82;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;height:116px;text-align:left;}</style>');
document.write('<span id=\"jblocktit\"><br />' + tpname + '<br />' + tpperson + '<br />' + tpmedium + '<br />' + tpdate + '</span>');
document.write('<style type=\"text/css\">#jblockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"jblockbot\">' + psdescr + '</span>');
document.write('<style type=\"text/css\">#jblockmid{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 139) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:80;width:102px;height:78px;text-align:left;}</style>');
bhline();
document.write('<span id=\"jblockmid\"><a href=\"#\" onmouseover=\"goinblock()\" onmouseout=\"gooutblock()\"><img src=\"../g/' + pshortarray[gpid] + '-s001.jpg\" width=\"102\" height=\"78\" alt=\"\" name=\"smim\" border=\"0\" /></a></span>');
document.write('<style type=\"text/css\">#jblockall{position:absolute;top:' + parseInt((winheight - picheight) / 2) + 'px;left:' + parseInt((winwidth - picwidth) / 2) + 'px;z-index:0;width:' + picwidth + 'px;height:' + picheight + 'px;text-align:left;}</style>');
document.write('<span id=\"jblockall\"><img src=\"../g/_empty.png\" width=\"' + picwidth + '\" height=\"' + picheight + '\" name=\"laim\" border=\"0\" /></span>');
}

function kblock(kinfo)
{
bhlined();
document.write('<style type=\"text/css\">#kblockbot{position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 60) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:90;width:' + (parseInt(document.body.clientWidth / 2) - 10) + 'px;text-align:left;}</style>');
document.write('<span id=\"kblockbot\">' + kinfo + '</span>');
}

function bvline()
{
document.write('<style type=\"text/css\">#bvline{background-color:#000000;width:1px;height:121px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 61) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:85;}</style>');
document.write('<span id=\"bvline\"></span>');
}

function bhline()
{
document.write('<style type=\"text/css\">#bhline{background-color:#000000;width:' + (parseInt(document.body.clientWidth / 4)) + 'px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 61) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:85;}</style>');
document.write('<span id=\"bhline\"></span>');
}

function bhlined()
{
document.write('<style type=\"text/css\">#bhlined{background-color:#000000;width:' + (parseInt(document.body.clientWidth / 4)) + 'px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2) + 59) + 'px;left:' + (parseInt(document.body.clientWidth / 4) + 1) + 'px;z-index:85;}</style>');
document.write('<span id=\"bhlined\"></span>');
}

function bvline2()
{
document.write('<style type=\"text/css\">#bvline2t{width:11px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 17) + 'px;left:' + (parseInt((document.body.clientWidth / 2) - 5)) + 'px;z-index:85;}</style>');
document.write('<a href=\"p/00000.html\"><span id=\"bvline2t\"></span></a>');

document.write('<style type=\"text/css\">#bvline2{background-color:#000000;width:1px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2) - 17) + 'px;left:' + (parseInt(document.body.clientWidth / 2)) + 'px;z-index:80;}</style>');
document.write('<span id=\"bvline2\"></span>');
}

function bhline2()
{
document.write('<style type=\"text/css\">#bhline2t{width:33px;height:11px;margin:0;position:absolute;top:' + (parseInt((document.body.clientHeight / 2) - 5)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:85;}</style>');
document.write('<a href=\"p/00000.html\"><span id=\"bhline2t\"></span></a>');

document.write('<style type=\"text/css\">#bhline2{background-color:#000000;width:33px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight / 2)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:85;}</style>');
document.write('<span id=\"bhline2\"></span>');
}

function bhline3()
{
document.write('<style type=\"text/css\">#bhline3t{width:33px;height:11px;margin:0;position:absolute;top:' + (parseInt((document.body.clientHeight * 0.25) - 5)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:85;}</style>');
document.write('<a href=\"00001.html\"><span id=\"bhline3t\"></span></a>');

document.write('<style type=\"text/css\">#bhline3{background-color:#000000;width:33px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.25)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:80;}</style>');
document.write('<span id=\"bhline3\"></span>');
}

function bhline3l()
{
document.write('<style type=\"text/css\">#bhline3l{background-color:#000000;width:' + (parseInt(document.body.clientWidth)) + 'px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.25)) + 'px;left:0px;z-index:85;}</style>');
document.write('<span id=\"bhline3l\"></span>');
}

function bhline4()
{
document.write('<style type=\"text/css\">#bhline4t{width:33px;height:11px;margin:0;position:absolute;top:' + (parseInt((document.body.clientHeight * 0.5) - 5)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:85;}</style>');
document.write('<a href=\"00000.html\"><span id=\"bhline4t\"></span></a>');

document.write('<style type=\"text/css\">#bhline4{background-color:#000000;width:33px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.5)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:80;}</style>');
document.write('<span id=\"bhline4\"></span>');
}

function bhline4l()
{
document.write('<style type=\"text/css\">#bhline4l{background-color:#000000;width:' + (parseInt(document.body.clientWidth)) + 'px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.5)) + 'px;left:0px;z-index:85;}</style>');
document.write('<span id=\"bhline4l\"></span>');
}

function bhline5()
{
document.write('<style type=\"text/css\">#bhline5t{width:33px;height:11px;margin:0;position:absolute;top:' + (parseInt((document.body.clientHeight * 0.75) - 5)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:85;}</style>');
document.write('<a href=\"mailto:wlfr@wlfr.nl\"><span id=\"bhline5t\"></span></a>');

document.write('<style type=\"text/css\">#bhline5{background-color:#000000;width:33px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.75)) + 'px;left:' + (parseInt(document.body.clientWidth / 2) - 17) + 'px;z-index:80;}</style>');
document.write('<span id=\"bhline5\"></span>');
}

function bhline5l()
{
document.write('<style type=\"text/css\">#bhline5l{background-color:#000000;width:' + (parseInt(document.body.clientWidth)) + 'px;height:1px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.75)) + 'px;left:0px;z-index:85;}</style>');
document.write('<span id=\"bhline5l\"></span>');
}

function bvline6()
{
for (trep = 0; trep < wurlarray.length; trep++)
{
document.write('<style type=\"text/css\">#bvline2t-' + trep + '{width:11px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.25) - 17) + 'px;left:' + (parseInt(((document.body.clientWidth / (wurlarray.length + 1)) * (trep + 1)) - 5)) + 'px;z-index:85;}</style>');
document.write('<a href=\"http://' + wurlarray[trep] + '\" target=\"_blank\"><span id=\"bvline2t-' + trep + '\"></span></a>');

document.write('<style type=\"text/css\">#bvline2-' + trep + '{background-color:#000000;width:1px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.25) - 17) + 'px;left:' + (parseInt((document.body.clientWidth / (wurlarray.length + 1)) * (trep + 1))) + 'px;z-index:80;}</style>');
document.write('<span id=\"bvline2-' + trep + '\"></span>');
}
}

function bvline3()
{
winheight = document.body.clientHeight + 15;
winwidth = document.body.clientWidth + 20;

if ((document.body.clientHeight * 4) > (document.body.clientWidth * 3))
{
picheight = winheight;
picwidth = parseInt((winheight / 3) * 4);
}
else
{
picheight = parseInt((winwidth / 4) * 3);
picwidth = winwidth;
}

if (document.images)
{
lrgout0000 = new Image();
lrgout0000.src = '../g/_empty.png';
lrgin0000 = new Image();
lrgin0000.src = '../g/' + pshortarray[0] + '-s001.jpg';
lrgout0001 = new Image();
lrgout0001.src = '../g/_empty.png';
lrgin0001 = new Image();
lrgin0001.src = '../g/' + pshortarray[1] + '-s001.jpg';
lrgout0002 = new Image();
lrgout0002.src = '../g/_empty.png';
lrgin0002 = new Image();
lrgin0002.src = '../g/' + pshortarray[2] + '-s001.jpg';
lrgout0003 = new Image();
lrgout0003.src = '../g/_empty.png';
lrgin0003 = new Image();
lrgin0003.src = '../g/' + pshortarray[3] + '-s001.jpg';
lrgout0004 = new Image();
lrgout0004.src = '../g/_empty.png';
lrgin0004 = new Image();
lrgin0004.src = '../g/' + pshortarray[4] + '-s001.jpg';
lrgout0005 = new Image();
lrgout0005.src = '../g/_empty.png';
lrgin0005 = new Image();
lrgin0005.src = '../g/' + pshortarray[5] + '-s001.jpg';
lrgout0006 = new Image();
lrgout0006.src = '../g/_empty.png';
lrgin0006 = new Image();
lrgin0006.src = '../g/' + pshortarray[6] + '-s001.jpg';
lrgout0007 = new Image();
lrgout0007.src = '../g/_empty.png';
lrgin0007 = new Image();
lrgin0007.src = '../g/' + pshortarray[7] + '-s001.jpg';
lrgout0008 = new Image();
lrgout0008.src = '../g/_empty.png';
lrgin0008 = new Image();
lrgin0008.src = '../g/' + pshortarray[8] + '-s001.jpg';
lrgout0009 = new Image();
lrgout0009.src = '../g/_empty.png';
lrgin0009 = new Image();
lrgin0009.src = '../g/' + pshortarray[9] + '-s001.jpg';
lrgout0010 = new Image();
lrgout0010.src = '../g/_empty.png';
lrgin0010 = new Image();
lrgin0010.src = '../g/' + pshortarray[10] + '-s001.jpg';
lrgout0011 = new Image();
lrgout0011.src = '../g/_empty.png';
lrgin0011 = new Image();
lrgin0011.src = '../g/' + pshortarray[11] + '-s001.jpg';
lrgout0012 = new Image();
lrgout0012.src = '../g/_empty.png';
lrgin0012 = new Image();
lrgin0012.src = '../g/' + pshortarray[12] + '-s001.jpg';
lrgout0013 = new Image();
lrgout0013.src = '../g/_empty.png';
lrgin0013 = new Image();
lrgin0013.src = '../g/' + pshortarray[13] + '-s001.jpg';
lrgout0014 = new Image();
lrgout0014.src = '../g/_empty.png';
lrgin0014 = new Image();
lrgin0014.src = '../g/' + pshortarray[14] + '-s001.jpg';
lrgout0015 = new Image();
lrgout0015.src = '../g/_empty.png';
lrgin0015 = new Image();
lrgin0015.src = '../g/' + pshortarray[15] + '-s001.jpg';
lrgout0016 = new Image();
lrgout0016.src = '../g/_empty.png';
lrgin0016 = new Image();
lrgin0016.src = '../g/' + pshortarray[16] + '-s001.jpg';
lrgout0017 = new Image();
lrgout0017.src = '../g/_empty.png';
lrgin0017 = new Image();
lrgin0017.src = '../g/' + pshortarray[17] + '-s001.jpg';
lrgout0018 = new Image();
lrgout0018.src = '../g/_empty.png';
lrgin0018 = new Image();
lrgin0018.src = '../g/' + pshortarray[18] + '-s001.jpg';
lrgout0019 = new Image();
lrgout0019.src = '../g/_empty.png';
lrgin0019 = new Image();
lrgin0019.src = '../g/' + pshortarray[19] + '-s001.jpg';
lrgout0020 = new Image();
lrgout0020.src = '../g/_empty.png';
lrgin0020 = new Image();
lrgin0020.src = '../g/' + pshortarray[20] + '-s001.jpg';
lrgout0021 = new Image();
lrgout0021.src = '../g/_empty.png';
lrgin0021 = new Image();
lrgin0021.src = '../g/' + pshortarray[21] + '-s001.jpg';
lrgout0022 = new Image();
lrgout0022.src = '../g/_empty.png';
lrgin0022 = new Image();
lrgin0022.src = '../g/' + pshortarray[22] + '-s001.jpg';
lrgout0023 = new Image();
lrgout0023.src = '../g/_empty.png';
lrgin0023 = new Image();
lrgin0023.src = '../g/' + pshortarray[23] + '-s001.jpg';
lrgout0024 = new Image();
lrgout0024.src = '../g/_empty.png';
lrgin0024 = new Image();
lrgin0024.src = '../g/' + pshortarray[24] + '-s001.jpg';
lrgout0025 = new Image();
lrgout0025.src = '../g/_empty.png';
lrgin0025 = new Image();
lrgin0025.src = '../g/' + pshortarray[25] + '-s001.jpg';
lrgout0026 = new Image();
lrgout0026.src = '../g/_empty.png';
lrgin0026 = new Image();
lrgin0026.src = '../g/' + pshortarray[26] + '-s001.jpg';
lrgout0027 = new Image();
lrgout0027.src = '../g/_empty.png';
lrgin0027 = new Image();
lrgin0027.src = '../g/' + pshortarray[27] + '-s001.jpg';
lrgout0028 = new Image();
lrgout0028.src = '../g/_empty.png';
lrgin0028 = new Image();
lrgin0028.src = '../g/' + pshortarray[28] + '-s001.jpg';
lrgout0029 = new Image();
lrgout0029.src = '../g/_empty.png';
lrgin0029 = new Image();
lrgin0029.src = '../g/' + pshortarray[29] + '-s001.jpg';
lrgout0030 = new Image();
lrgout0030.src = '../g/_empty.png';
lrgin0030 = new Image();
lrgin0030.src = '../g/' + pshortarray[30] + '-s001.jpg';
lrgout0031 = new Image();
lrgout0031.src = '../g/_empty.png';
lrgin0031 = new Image();
lrgin0031.src = '../g/' + pshortarray[31] + '-s001.jpg';
lrgout0032 = new Image();
lrgout0032.src = '../g/_empty.png';
lrgin0032 = new Image();
lrgin0032.src = '../g/' + pshortarray[32] + '-s001.jpg';
lrgout0033 = new Image();
lrgout0033.src = '../g/_empty.png';
lrgin0033 = new Image();
lrgin0033.src = '../g/' + pshortarray[33] + '-s001.jpg';
lrgout0034 = new Image();
lrgout0034.src = '../g/_empty.png';
lrgin0034 = new Image();
lrgin0034.src = '../g/' + pshortarray[34] + '-s001.jpg';
lrgout0035 = new Image();
lrgout0035.src = '../g/_empty.png';
lrgin0035 = new Image();
lrgin0035.src = '../g/' + pshortarray[35] + '-s001.jpg';
lrgout0036 = new Image();
lrgout0036.src = '../g/_empty.png';
lrgin0036 = new Image();
lrgin0036.src = '../g/' + pshortarray[36] + '-s001.jpg';
}

for (trep = 0; trep < pnumberarray.length; trep++)
{
document.write('<style type=\"text/css\">#blocklrg' + pnumberarray[trep] + '{position:absolute;top:' + parseInt((winheight - picheight) / 2) + 'px;left:' + parseInt((winwidth - picwidth) / 2) + 'px;z-index:0;width:' + picwidth + 'px;height:' + picheight + 'px;text-align:left;}</style>');

document.write('<span id=\"blocklrg' + pnumberarray[trep] + '\"><img src=\"../g/_empty.png\" width=\"' + picwidth + '\" height=\"' + picheight + '\" name=\"lrg' + pnumberarray[trep] + '\" border=\"0\" /></span>');

document.write('<style type=\"text/css\">#bvlinet' + pnumberarray[trep] + '{width:11px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.5) - 17) + 'px;left:' + (parseInt(((document.body.clientWidth / (pnumberarray.length + 1)) * (trep + 1)) - 5)) + 'px;z-index:85;}</style>');

document.write('<a href=\"#\" onmouseover=\"lrgi' + pnumberarray[trep] + '()\" onmouseout=\"lrgo' + pnumberarray[trep] + '()\"><span id=\"bvlinet' + pnumberarray[trep] + '\"></span></a>');

document.write('<style type=\"text/css\">#bvline' + pnumberarray[trep] + '{background-color:#000000;width:1px;height:33px;margin:0;position:absolute;top:' + (parseInt(document.body.clientHeight * 0.5) - 17) + 'px;left:' + (parseInt((document.body.clientWidth / (pnumberarray.length + 1)) * (trep + 1))) + 'px;z-index:80;}</style>');

document.write('<span id=\"bvline' + pnumberarray[trep] + '\"></span>');

}
}

function lrgi0000()
{
if(document.images){document["lrg0000"].src=lrgin0000.src};
}

function lrgo0000()
{
if(document.images){document["lrg0000"].src=lrgout0000.src};
}

function lrgi0001()
{
if(document.images){document["lrg0001"].src=lrgin0001.src};
}

function lrgo0001()
{
if(document.images){document["lrg0001"].src=lrgout0001.src};
}

function lrgi0002()
{
if(document.images){document["lrg0002"].src=lrgin0002.src};
}

function lrgo0002()
{
if(document.images){document["lrg0002"].src=lrgout0002.src};
}

function lrgi0003()
{
if(document.images){document["lrg0003"].src=lrgin0003.src};
}

function lrgo0003()
{
if(document.images){document["lrg0003"].src=lrgout0003.src};
}

function lrgi0004()
{
if(document.images){document["lrg0004"].src=lrgin0004.src};
}

function lrgo0004()
{
if(document.images){document["lrg0004"].src=lrgout0004.src};
}

function lrgi0005()
{
if(document.images){document["lrg0005"].src=lrgin0005.src};
}

function lrgo0005()
{
if(document.images){document["lrg0005"].src=lrgout0005.src};
}

function lrgi0006()
{
if(document.images){document["lrg0006"].src=lrgin0006.src};
}

function lrgo0006()
{
if(document.images){document["lrg0006"].src=lrgout0006.src};
}

function lrgi0007()
{
if(document.images){document["lrg0007"].src=lrgin0007.src};
}

function lrgo0007()
{
if(document.images){document["lrg0007"].src=lrgout0007.src};
}

function lrgi0008()
{
if(document.images){document["lrg0008"].src=lrgin0008.src};
}

function lrgo0008()
{
if(document.images){document["lrg0008"].src=lrgout0008.src};
}

function lrgi0009()
{
if(document.images){document["lrg0009"].src=lrgin0009.src};
}

function lrgo0009()
{
if(document.images){document["lrg0009"].src=lrgout0009.src};
}

function lrgi0010()
{
if(document.images){document["lrg0010"].src=lrgin0010.src};
}

function lrgo0010()
{
if(document.images){document["lrg0010"].src=lrgout0010.src};
}

function lrgi0011()
{
if(document.images){document["lrg0011"].src=lrgin0011.src};
}

function lrgo0011()
{
if(document.images){document["lrg0011"].src=lrgout0011.src};
}

function lrgi0012()
{
if(document.images){document["lrg0012"].src=lrgin0012.src};
}

function lrgo0012()
{
if(document.images){document["lrg0012"].src=lrgout0012.src};
}

function lrgi0013()
{
if(document.images){document["lrg0013"].src=lrgin0013.src};
}

function lrgo0013()
{
if(document.images){document["lrg0013"].src=lrgout0013.src};
}

function lrgi0014()
{
if(document.images){document["lrg0014"].src=lrgin0014.src};
}

function lrgo0014()
{
if(document.images){document["lrg0014"].src=lrgout0014.src};
}

function lrgi0015()
{
if(document.images){document["lrg0015"].src=lrgin0015.src};
}

function lrgo0015()
{
if(document.images){document["lrg0015"].src=lrgout0015.src};
}

function lrgi0016()
{
if(document.images){document["lrg0016"].src=lrgin0016.src};
}

function lrgo0016()
{
if(document.images){document["lrg0016"].src=lrgout0016.src};
}

function lrgi0017()
{
if(document.images){document["lrg0017"].src=lrgin0017.src};
}

function lrgo0017()
{
if(document.images){document["lrg0017"].src=lrgout0017.src};
}

function lrgi0018()
{
if(document.images){document["lrg0018"].src=lrgin0018.src};
}

function lrgo0018()
{
if(document.images){document["lrg0018"].src=lrgout0018.src};
}

function lrgi0019()
{
if(document.images){document["lrg0019"].src=lrgin0019.src};
}

function lrgo0019()
{
if(document.images){document["lrg0019"].src=lrgout0019.src};
}

function lrgi0020()
{
if(document.images){document["lrg0020"].src=lrgin0020.src};
}

function lrgo0020()
{
if(document.images){document["lrg0020"].src=lrgout0020.src};
}

function lrgi0021()
{
if(document.images){document["lrg0021"].src=lrgin0021.src};
}

function lrgo0021()
{
if(document.images){document["lrg0021"].src=lrgout0021.src};
}

function lrgi0022()
{
if(document.images){document["lrg0022"].src=lrgin0022.src};
}

function lrgo0022()
{
if(document.images){document["lrg0022"].src=lrgout0022.src};
}

function lrgi0023()
{
if(document.images){document["lrg0023"].src=lrgin0023.src};
}

function lrgo0023()
{
if(document.images){document["lrg0023"].src=lrgout0023.src};
}

function lrgi0024()
{
if(document.images){document["lrg0024"].src=lrgin0024.src};
}

function lrgo0024()
{
if(document.images){document["lrg0024"].src=lrgout0024.src};
}

function lrgi0025()
{
if(document.images){document["lrg0025"].src=lrgin0025.src};
}

function lrgo0025()
{
if(document.images){document["lrg0025"].src=lrgout0025.src};
}

function lrgi0026()
{
if(document.images){document["lrg0026"].src=lrgin0026.src};
}

function lrgo0026()
{
if(document.images){document["lrg0026"].src=lrgout0026.src};
}

function lrgi0027()
{
if(document.images){document["lrg0027"].src=lrgin0027.src};
}

function lrgo0027()
{
if(document.images){document["lrg0027"].src=lrgout0027.src};
}

function lrgi0028()
{
if(document.images){document["lrg0028"].src=lrgin0028.src};
}

function lrgo0028()
{
if(document.images){document["lrg0028"].src=lrgout0028.src};
}

function lrgi0029()
{
if(document.images){document["lrg0029"].src=lrgin0029.src};
}

function lrgo0029()
{
if(document.images){document["lrg0029"].src=lrgout0029.src};
}

function lrgi0030()
{
if(document.images){document["lrg0030"].src=lrgin0030.src};
}

function lrgo0030()
{
if(document.images){document["lrg0030"].src=lrgout0030.src};
}

function lrgi0031()
{
if(document.images){document["lrg0031"].src=lrgin0031.src};
}

function lrgo0031()
{
if(document.images){document["lrg0031"].src=lrgout0031.src};
}

function lrgi0032()
{
if(document.images){document["lrg0032"].src=lrgin0032.src};
}

function lrgo0032()
{
if(document.images){document["lrg0032"].src=lrgout0032.src};
}

function lrgi0033()
{
if(document.images){document["lrg0033"].src=lrgin0033.src};
}

function lrgo0033()
{
if(document.images){document["lrg0033"].src=lrgout0033.src};
}

function lrgi0034()
{
if(document.images){document["lrg0034"].src=lrgin0034.src};
}

function lrgo0034()
{
if(document.images){document["lrg0034"].src=lrgout0034.src};
}

function lrgi0035()
{
if(document.images){document["lrg0035"].src=lrgin0035.src};
}

function lrgo0035()
{
if(document.images){document["lrg0035"].src=lrgout0035.src};
}

function lrgi0036()
{
if(document.images){document["lrg0036"].src=lrgin0036.src};
}

function lrgo0036()
{
if(document.images){document["lrg0036"].src=lrgout0036.src};
}

function oooo()
{
document.write('<style type=\"text/css\">#oooopic{position:absolute;top:' + parseInt((document.body.clientHeight / 2) - (395 / 2)) + 'px;left:' + parseInt((document.body.clientWidth / 2) - (395 / 2)) + 'px;z-index:0;width:395px;height:395px;}</style>');
document.write('<span id=\"oooopic\"><a href=\"http://www.conceptsassociated.com/o-o-o-o/\" target=\"_blank\"><img src=\"oooo_20100501.jpg\" border=\"0\" /></a></span>');
}

function testbar(nummer)
{
document.write(pnumberarray[nummer] + '<br />');
document.write(pnamearray[nummer] + '<br />');
document.write(pnamenarray[nummer] + '<br />');
document.write(pnameearray[nummer] + '<br />');
document.write(pshortarray[nummer] + '<br />');
document.write(pyeararray[nummer] + '<br />');
document.write(pdateiarray[nummer] + '<br />');
document.write(pdatenarray[nummer] + '<br />');
document.write(pdateearray[nummer] + '<br />');
document.write(ppersonarray[nummer] + '<br />');
document.write(pmediumnarray[nummer] + '<br />');
document.write(pmediumearray[nummer] + '<br />');
document.write('<img src=\"../g/' + pshortarray[nummer] + '-s001.jpg\" /><br />');
}

