



function screenSize(){

var y=screen.availHeight;
var x=screen.availWidth;

//document.getElementById("bodyTable").style.position="absolute";
//document.getElementById("bodyTable").style.left=(x/10)+"px";
//document.getElementById("bodyTable").style.top=(100)+"px"
//document.getElementById("bodyTable").style.width=(900)+"px"

}


/*---------------------------------------------------------------------------------------------------*/

var w = 0;
var h = 0;
var pi = 3.14159265328979;
var max = 200;

function animate(sess){
   
    var proc = h / 200;
	var sin = Math.sin((proc * pi));
	h+=5*(sin+.1);
	w+=9.9;
	
	document.getElementById(sess).style.height = h+"px";
	
	document.getElementById(sess).style.width = w+"px";
	
	document.getElementById(sess).style.visibility ="visible";
	if(h < max){
	   setTimeout("animate('"+sess+"');",5);
	}
	if(h>=max)
	 document.getElementById(sess+"table").style.visibility ="visible";
	
 }	
 
 function tdChangeColor(tdID,styleColor){
 //document.getElementById(tdID).style.backgroundColor = "#efefef";
 document.getElementById(tdID).style.borderColor = styleColor;
  document.getElementById(tdID).style.borderStyle = "solid";
 }
 
 function tdRestoreColor(tdID){
 //document.getElementById(tdID).style.backgroundColor = "#ffffff";
  document.getElementById(tdID).style.borderColor = "#888888";
  document.getElementById(tdID).style.borderStyle = "dotted";
 }
 
