
window.onload = function () {

	
	if(document.getElementById) {
		if(document.getElementById('kep')) {
			var obj=document.getElementsByTagName("IMG");
			
			for(var i=0; i<obj.length; i++) {
				//alert(obj[i].id);
				if(obj[i].id!="kep") continue;
				obj[i].onmouseover=over;	
				obj[i].onmouseout=out;
			}
		}
	}
	/*if(document.getElementById('csab')) {
			document.getElementById('csab').style.visibility="hidden";
	}*/
	   
	   

}
	


function over(e) {
	if (!e) var e=window.event;
	thislink = (e.target) ? e.target: e.srcElement;
	this.style.border='1px solid #000000';

}
function out(e) {
	if (!e) var e=window.event;
	thislink = (e.target) ? e.target: e.srcElement;
	this.style.border='0px';
}

function mezo(param,color) {
	document.getElementById(param).style.backgroundColor=color;
}

function showpic(x,y,id) {
 url="kep.php?kepid="+id;
 window.open(url,"kep"+id,"width="+x+",height="+y+",top=228,left=408,scrollbars=0,resizable=1");
}

