function snl(loc)
{
	if (loc)
	{
		document.location.href = loc;
	}
	
	return true;
}

var win = null;

function openSetcard(pid)
{
	var w = 720;
	var h = 520;
	
	var winl = (screen.width-w)/2 - 4;
	var wint = (screen.height-h)/2 + 6;
	
	var settings  = 'height='+h+',';
		settings += 'width='+w+',';
		settings += 'top='+wint+',';
		settings += 'left='+winl+',';
		settings += 'scrollbars=no,';
		settings += 'resizable=no';
	
	win = window.open('/providers/show/'+pid, 'setCard', settings);
	win.focus();
	
	return true;
}

