function bulShunu(bunu) {
	var theObject;
	if (document.all) {
		/* Internet Explorer, Opera */
		theObject = document.all(bunu);
	} else if (document.getElementById) {
		/* Mozilla */
		theObject = document.getElementById(bunu);
	} else if (document.layers) {
		/* Netscape? */
		theObject = document.layers[bunu];
	};
	if (theObject) {
		return theObject;
	};
};

