// JavaScript Document

function openCredits()
{
	var strDomain = document.location.host;
	if(strDomain != "silverlining.theroundhouse.local")
	{
		strDomain += "/newsite";
	}
	openURL('/credits/index.php', 'Credits & Legal', 800, 600, true);
}

function openURL(url, name, width, height, scrollbars)
{
	var str 	= "height=" + height + ",innerHeight=" + height + ",width=" + width + ",innerWidth=" + width + ",statusbar=no,scrollbars=" + (scrollbars?"yes":"no");
	var xpos	= (screen.availWidth-width)/2;
	var ypos	= (screen.availHeight-height)/2;
	newWindow 	= window.open(url,"pic",str);
	newWindow.focus();
}