// JavaScript Document

function CreateControl(movie, h, w)
{
  document.write('<embed id="ee" style="width: ' + w + 'px; height: ' + h + 'px;" name="EmailLube" src="' + movie + '" quality="high"></embed>');
}

function setOpacity(testObj,value) {
	testObj.style.opacity = value/10;
	testObj.style.filter = 'alpha(opacity=' + value*10 + ')';
}

function ShowImage(n,i)
{
	var imgName = "images/" + n + "_" + i + ".jpg";
	//imgName = substr();
	document.getElementById('mainImage').src = imgName;
}
