/*window.onresize = function(){
}

window.onload = function(){
}*/

function resizeTable() {
	/*alert("check ")*/
}

function popUp(URL) {
	var newWidth = 500;
	var newHeight = screen.availHeight;

	var newX = (screen.availWidth - newWidth) / 2;
	var newY = (screen.availHeight - newHeight) / 2;

	window.open(URL,"VAX","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width="+newWidth+", height="+newHeight+", left="+newX+",top="+newY)
}

function menuBtn(status, obj, num){
	obj.src="images/menu" + num + status + ".gif";
}

function overBtn(obj){
	menuBtn('_over', obj, obj.id);
}

function downBtn(obj){
	menuBtn('_down', obj, obj.id);
}

function upBtn(obj){
	menuBtn('', obj, obj.id);
}

function hideErrMsg(id){
	var box = document.getElementById(id);
	box.style.visibility = 'hidden';
}