
function faq(url)
{
	newWindow(url,'Questions',500,500);
}

function newWindow(url, name, width, height)
{
	var features = 'width=' + width + ', height=' + height + ', toolbar=no, location=no, scrollbars=yes,left=20,top=5,screenX=20,screenY=5';
	var thisWindow = window.open(url, name, features)
	thisWindow.focus();
}