function getTDHeight(){
				contentTop 		= getPixelsFromTop(document.getElementById("content_top"))
				contentBottom 	= getPixelsFromTop(document.getElementById("content_bottom"))
				//if(navigator.userAgent.indexOf("Firefox") != -1)
					//{
					//   	heightOfCell 	= (contentBottom - contentTop)-2;
					//}
					//else
					//{
					//  	heightOfCell 	= (contentBottom - contentTop)-2;
					//}
				heightOfCell 	= (contentBottom - contentTop)*2;
				document.getElementById("myframe").style.height = heightOfCell;
				//alert (heightOfCell);
				//document.getElementById("sub2").style.height = heightOfCell;
			}
function getPixelsFromTop(obj){
				objFromTop = obj.offsetTop;
				while(obj.offsetParent!=null) {
					objParent = obj.offsetParent;
					objFromTop += objParent.offsetTop;
					obj = objParent;
				}
				return objFromTop;
			}
function paginalink(theURL,winName) { //v2.0
  window.open(theURL,winName);
}