// JavaScript Document

function zoomImg(wID){
	myWindow = window.open('popup_img.php?id='+wID+'','','status=yes,width=80,height=80,scrollbars=1');
	myWindow.focus();
}

function getObj(objectId)
{
    if(document.getElementById && document.getElementById(objectId)) {
	this.obj = document.getElementById(objectId);
	this.style = document.getElementById(objectId).style;
    } else if (document.all && document.all(objectId)) {
	this.obj = document.all(objectId);
	this.style = document.all(objectId).style;
    } else if (document.layers && document.layers[objectId]) {
	this.obj = document.layers[objectId];
	this.style = document.layers[objectId];
    } else {
	return false;
    }
}
