var d = new Date()
var dateout = d.getFullYear();

function openClose(){
window.close();
return false;
}

function openFile(Url)
{
	window.open(Url)	
}
function ShowWindow(){
	MyWindow = window.open('../survey/index.asp','Customer Satisfaction Survey','width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no')
}

//Format Phone Number 9999999999 = (999)999-9999
//Call the function like so onKeyPress="javascript:formatPhone(this);
function formatPhone(F)
{
var PH = F.value;
PH = PH.replace("(","");
PH = PH.replace(")","");
PH = PH.replace("-","");
PH = PH.replace(" ","");

      if(PH.length < 3)
      {
            F.value = "(" + PH;
      }
      if(PH.length > 3 && PH.length <= 6)
      {
            F.value = "(" + PH.substring(0,3) + ") " + PH.substring(3,6);
      }
      if(PH.length > 6)
      {
            F.value = "(" + PH.substring(0,3) + ") " + PH.substring(3,6) + "-" + PH.substring(6,10);
      }
}

var imageCounter=1;
var imageRef = false;
function switchImage(){
   if(!imageRef)imageRef = document.getElementById('bannerBG');
   var no = imageCounter%6/1 + 1;
   imageRef.className = 'image' + no;
   imageCounter++;
}

var ImageSelection = new Array (
"images/index/COTG5.jpg",
"images/index/COTG6.jpg",
"images/index/COTG7.jpg",
"images/index/COTG8.jpg",
"images/index/COTG9.jpg",
"images/index/COTG10.jpg",
"images/index/COTG11.jpg",
"images/index/COTG12.jpg"
)

function RandomImage(){
theImage = ImageSelection[Math.floor(Math.random()*ImageSelection.length)];
return theImage;
}
