function popupWebCam(camid,caption){
  var w =420;
  var h =420;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('webcam/webcampopup.aspx?camid=' + camid+'&ttl='+caption,'WebCam'+camid,'width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
	return false;
}

function popupMovie(movie){
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/video.aspx?vid='+movie,'Movie'+movie,'width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupCustomMovie(movie){
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/'+movie+'/video.aspx','Movie'+movie,'width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupCustomMovie2(movie){
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/'+movie+'/index.htm','Movie'+movie,'width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupW365TV() {
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/w365tv/video.aspx','w365TV','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupAudio() {
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/audiostream/audio.aspx','Audio','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupPodCast() {
  var w =750;
  var h =620;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('streaming/podcaststream/podcast.aspx','PodcastStream','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupImage(imgid,caption){
  var w =620;
  var h =720;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('imagepopup.aspx?id='+imgid+'&ttl='+caption,'Image','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupChat(nick){
  if(nick=='') {
    alert('You must enter a name before you can connect to our chat server');
  }else{
    var w =480;
    var h =350;
    var winleft = (screen.width - w) / 2;
    var wintop = (screen.height - h) / 2;
  	var q = window.open('http://scripts.wight365.com/webchat/chatpopup.asp?lc='+nick,'Chat'+nick,'width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	  q.focus();
	}
}

function mailpreview(directory){
  var w = 840;
  var h = 600;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('previewmail.aspx?dr='+directory,'_blank','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=yes,status=yes,scrollbars=yes,resizable=yes');
	q.focus();
}

function popupSubscribe(email){
  if(email=='') {
    alert('You must enter an email address before you can subscribe');
  }else{
    var w =250;
    var h =200;
    var winleft = (screen.width - w) / 2;
    var wintop = (screen.height - h) / 2;
  	var q = window.open('subscribe.aspx?sub='+email,'Subscribe','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	  q.focus();
	}
}

var current=0;
function swapi(img) {
  document.getElementById("img"+current).style.display  = 'none';
  document.getElementById("img"+img).style.display  = '';
  current=img;
}

function swpstf(id,desc) {
  document['stf'+id].src='graphics/ico_profileo.gif';
  el = document.getElementById("descript")
  el.innerHTML=desc;
}

function rtnstf(id) {
  document['stf'+id].src='graphics/ico_profile.gif';
  el.innerHTML='MEET THE TEAM';
}

function preloadImages() {
  var d=document; 
  if(d.images) { 
    if(!d.p) { d.p=new Array(); }
    var i;
    var j=d.p.length;
    var a=preloadImages.arguments;
    for(i=0; i<a.length; i++) {
        d.p[j]=new Image; 
        d.p[j++].src=a[i];
    }
  }
}