<!--
// Copyright © SHINYBoys DE
// JCode by: Reza Mohammady

function New640(WhatTheHell)
	{
	if(screen)
	{
	PosX=(screen.width-640)/2
	PosY=(screen.height-480)/2
	}
	sbWindow = window.open(WhatTheHell, "sbWin640", "left="+PosX+",top="+PosY+",width=640,height=480")
	sbWindow.focus
	}

function New320(WhatTheHell)
	{
	if(screen)
	{
	PosX=(screen.width-320)/2
	PosY=(screen.height-240)/2
	}
	sbWindow = window.open(WhatTheHell, "sbWin320", "left="+PosX+",top="+PosY+",width=320,height=240")
	sbWindow.focus
	}

function ShutDown()
	{
	window.close()
	}
function togObj(curObj,V)
	{
		if (document.getElementById) 
		{ 
			theObj=document.getElementById(curObj).style
			if(V){theObj.display="block"}else{theObj.display="none"}
		}
	}
<!--
function GoGray()
	{
	ht = document.getElementsByTagName("html");
	ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
	}
function GoColor()
	{
	ht = document.getElementsByTagName("html");
	ht[0].style.filter = "";
	}


-->