// JavaScript Document

function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));if (document.all) return(document.all[item]);if (document.getElementById) return(document.getElementById(item));	return(false);
}

function techism_toggleit(obj) {
	var el = FIND(obj);
	if (el.style.display == '') { el.style.display = 'block'; } else { el.style.display = '';}
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=1,resizable=0,width=450,height=230,left = 500,top = 290');");
}
