﻿/////////////////////////////////////////////////////////////////////////////
// $Id: //depot/websites/lasertherapycenter/javascript/popups.js#2 $
// $Header: //depot/websites/lasertherapycenter/javascript/popups.js#2 $
// $Date: 2007/11/29 $
// $DateTime: 2007/11/29 23:44:33 $
// $Change: 262 $
// $File: //depot/websites/lasertherapycenter/javascript/popups.js $
// $Revision: #2 $
// $Author: gkosinsk $
// 
/////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////
// Function:     OpenPopUp
// Arguments:    string, int, int
// Return Value: null
// Comment:      
/////////////////////////////////////////////////////////////////////////////
function OpenPopUp(Name, Width, Height)
{
   var LaserVideo;
   
   if (document.all)
   {
      LaserVideo = window.open('/moviepopup.php?movie=' + Name + '&height='+Height+'&width='+Width,'LaserVideo','status=0,toolbar=0,menubar=0,directories=0,resizeable=0,scrollbars=0,height=' + (Height-5) + ',width=' + (Width-5) + "'");
   }
   else
   {
      LaserVideo = window.open('/moviepopup.php?movie=' + Name + '&height='+Height+'&width='+Width,'LaserVideo','status=0,toolbar=0,menubar=0,directories=0,resizeable=0,scrollbars=0,height=' + Height + ',width=' + Width + "'");
   }
}

