// Set the horizontal and vertical position for the popup

//PositionX = 100;
//PositionY = 100;

PositionX = 300;
PositionY = 300;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 400;
defaultHeight = 600;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=400,height=300,left='+PositionX+',top='+PositionY;


function popImage(sPicURL,title) { 
     window.open( ""+sPicURL, "", "resizable=1,HEIGHT=400,WIDTH=600"); 
 }
/*
function popImage(sPicURL,title) { 
     window.open( "video/getmovie/"+sPicURL, "",  
     "resizable=1,HEIGHT=400,WIDTH=300"); 
 }
*/

