function tabSwitch(id)
{
	if (tabSwitchBefore != -1)
	{
		document.getElementById('tabstrip_' + tabSwitchBefore).setAttribute('class', 'tab');
		document.getElementById('tab_' + tabSwitchBefore).style.display = 'none';
	}
	
	document.getElementById('tabstrip_' + id).setAttribute('class', 'tabS');
	
	if (isIE4)
		document.getElementById('tab_' + id).style.display = 'block';
	else
		document.getElementById('tab_' + id).style.display = 'table';
	
	tabSwitchBefore = id;
}

function doask(msg,nexturl) {
	if (confirm(msg))
	location.replace(nexturl);
}
