// get current year

d           = document;
ThisTime    = new Date();
CurrentYear = ThisTime.getYear();

if (CurrentYear < 2000) CurrentYear = CurrentYear + 1900;

Mail1 = 'info';
Mail2 = '@';
Mail3 = 'kitocartoons.com';
MailString = ' <A OnFocus="if(this.blur)this.blur();" TITLE="email kitocartoons..." HREF="mailto:' + Mail1 + Mail2 + Mail3 + '">' + Mail1 + Mail2 + Mail3 + '</A>';

function CopyRight()
	{
d.write('&copy Kito ' + CurrentYear + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + MailString + '&nbsp;&nbsp;&nbsp;<A OnFocus="if(this.blur)this.blur();" HREF="javascript:ScrapPopUp();" TITLE="schrijf in het gastenboek...">gastenboek</A>');
	}
	
	
// popup window
function ScrapPopUp()
   {

AnyScroll = 1;
WinWidth  = 400;
WinHeight = 480;

    if (navigator.appVersion.indexOf('3.') == -1)
        {
    WinLeft = (screen.width - WinWidth) / 2;
    WinTop  = (screen.height - WinHeight) / 2;
        }
    else
        {
    WinLeft   = 50;
    WinTop    = 50;
        }

File2View = '/\scrap/\scrap.asp';
    
RemoteWindow = window.open(File2View,'ScrapWindow','height=' + WinHeight + ',width=' + WinWidth +  ',alwaysLowered=1,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=1,resizable=1,scrollbars=' + AnyScroll + ',status=0,titlebar=1,toolbar=0,z-lock=0,screenX=1,screenY=1,left=' + WinLeft + ',top=' + WinTop);

    }
