function setStyleOver(elemId){
	document.getElementById(elemId).style.borderColor="#fe7d00";
}

function setStyleOut(elemId){
	document.getElementById(elemId).style.borderColor="#4b88b7";
}

function openPopup(pagpopup, sb, w, h ){
	if (w == 0 || typeof(w) == "undefined"){
		w = 500;
	}
	if (h == 0 || typeof(h) == "undefined"){
		h = 600;
	}
	mywindow = window.open(pagpopup, "popup","menubar=0,toolbar=0,directories=0,resizable=1,location=0,status=0,scrollbars="+sb+",width="+w+",height="+h+",left=100,top=100");
	mywindow.focus();
}

