﻿// JScript File


function pUp(url,height,width,name)
{
    var brwindow=window.open(url,name,'height='+height+',width='+width);
    if (window.focus) {brwindow.focus()}
}
    var newwindow;
    function poptastic(url)
    {
        newwindow=window.open(url,'contact_form','height=378,width=468');
        if (window.focus) {newwindow.focus()}
    }
    
    function shuffle( myArray ) {
  var i = myArray.length;
  if ( i == 0 ) return false;
  while ( --i ) {
     var j = Math.floor( Math.random() * ( i + 1 ) );
     var tempi = myArray[i];
     var tempj = myArray[j];
     myArray[i] = tempj;
     myArray[j] = tempi;
   }
}