﻿// JScript File

function start(){
if(document.getElementById('text'))
{	
document.getElementById('text').focus();
}
var a = document.getElementById("page");
var b = document.getElementById("doc");

if(document.getElementById('q'))
{
a.style.backgroundColor = 'azure';
b.style.backgroundColor = 'azure';
}

if(document.getElementById('w'))
{
a.style.backgroundColor = 'mistyrose';
b.style.backgroundColor = 'mistyrose';
}

if(document.getElementById('s'))
{
a.style.backgroundColor = 'ivory';
b.style.backgroundColor = 'ivory';
}

}


function doc() {
var a = document.getElementById("document");
	a.style.display = (a.style.display != 'block' ? 'block' : 'none' );	
}

