// inextremo | specials | functions.js
	
function onLoadActions() {
	discoverScript();
}


function onResizeActions() {
	//
}

function winopen(url,name,style) { 
	// bsp: javascript:winopen('http://www.apple.com','apple_homepage','width=600,height=500,status=no,location=no,scrollbars=no,resizable=no');
	var newWin = window.open(url,name,style);
	newWin.focus();
}

function toggleDesc(id,style) {
	if (style == "show") {
		document.getElementById(id).innerHTML = "info";
	} else {
		document.getElementById(id).innerHTML = "&nbsp;";
	}
}

// peace out
