﻿// JScript File

function PopWin()
 {
 //alert("here");
 var url="/chat/Chat.aspx";
 var width="640";
 var height="480";
   mywindow = window.open (url,"mywindow","location=0,status=0,scrollbars=0,width=" + width + ",height=" + height);
     mywindow.moveTo(0,0);
 }
 
 
 function PopLabs()
 {
     var url="/TheVault/Labs/";

   mywindow = window.open (url,'mywindow2','toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no,width=948,height=687');
     mywindow.moveTo(0,0);
 }
 
 function alertMe()
 {
 alert("her111e");
 }