// javascript Document

function tabs()
{
	var arg = tabs.arguments;
	for(i=1; i<=arg.length-1; i++)
	{
		document.getElementById(arg[i]).style.display = arg[i+1] ? 'block' : 'none';
		i++;
	}
}

function winOpen(windowURL, windowName, windowFeatures){
	return window.open(windowURL, windowName, windowFeatures);
}
