// JavaScript Document
// Javascript for MAIN website
// Created by: Johnny Soedomo <jsoedomo@hotmail.com>
// Version 1.0

var defaultServices = "html/services-locations.php";
function gotoServicesLocation(urlVal)
{
	if (urlVal=="")
	{
		urlVal = defaultServices;
	}
	window.location.href = urlVal;
}

var defaultPastor = "pastor-construction.php";
function gotoPastorLocation(urlVal)
{
	if (urlVal=="")
	{
		urlVal = defaultPastor;
	}
	window.location.href = urlVal;
}

function viewTrailer(xLoc,yLoc,width,height,clipName)
{
	trailerWin=window.open(clipName,"viewTrailer",
		"width="+width+",height="+height+",left="+xLoc+",top="+yLoc+",screenX="+xLoc+",screenY="+yLoc);
	trailerWin.focus();
}