// JavaScript Document
var Height = screen.height;
if(Height == 768){
	Height = 582;
	}else if(Height == 1024){
	Height = 837;
	}else if(Height == 800){
	Height = 614;
	}else if(Height == 600){
	Height = 413;
	}else if(Height == 1050){
	Height = 700;
    }else{
	Height = screen.height - 200;
}
	
function DisplayRow(i){
var r = document.getElementById(i).style.display;
if(r=='none'){
	document.getElementById(i).style.display = 'inline';
}else if(r=='inline'){
	document.getElementById(i).style.display = 'none';
}
}

function DisplayTable(i){
var r = document.getElementById(i).style.display;
if(r=='none'){
	document.getElementById(i).style.display = 'inline';
}else if(r=='inline'){
	document.getElementById(i).style.display = 'none';
}
}

function dd(){
var Name=document.location.search;
var N = Name.substring(1);
DisplayTable(N);
}