﻿var curElement;
var oldTop;

function showLightbox(path){
	var d = document.getElementById('flashBox');	
	oldTop = d.style.top;
	d.style.visibility = 'visible';
	d.style.display = 'block';
	d.style.position = 'absolute';
	d.style.left = 0;

	var tp = document.documentElement.scrollTop + 30;
	if(navigator.appName.indexOf("Microsoft") == -1){
		tp += 'px';
	}	
	
	
	d.style.top = tp;
	d.style.zIndex = 99;
	
	setTimeout( "testMe(\'" + path + "\')" , 500 );

}

function testMe(path)
{
	
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	
	var t = Math.round(Math.random() * 9 + 1);
	var movie  = getFlashMovie('PopUp');
	
	movie.Show(path);
	
	//if(!isIE)
		movie.Show(path);
}

function getPos(e){
	curElement = e;
}

function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
 }
function HideBox(){
	var d = document.getElementById('flashBox');
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	if(!isIE){
		d.style.display = 'none';
	}
	else
		d.style.top = oldTop;

		
	d.style.zIndex = -100;
	
}


