function switchIcon(id, cl, iconsrc){
	if (document.images){
		document.images["icon"].src = iconsrc;
	}
	id = id + 'stub';
	if(document.all) 
		document.all(id).className=cl;
	else if(document.getElementById)
		document.getElementById(id).className=cl;
}

function screenshot(thisWidth, thisHeight, thisURL, thisDesc) {
		var rootpath='/kspince/';
		window.open(rootpath + 'inc/screenshot.asp?href=' + rootpath + thisURL + '&desc=' + thisDesc, "Screenshot", "resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width=" + thisWidth +",height=" + thisHeight);
}