/* Javascript Document 
author: Claudy-FRESH
www.H3CreativeSolutions.com
*/

function doOpacity(id, style, opacity) {
    id.style.opacity = style;
    id.filters.alpha.opacity = opacity;
}

function showElement(id){
	var e = document.getElementById(id);
	e.style.display = 'block';
}
function toggleVisibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
	e.style.display = 'none';
else
	e.style.display = 'block';
}

function popup(url,width, height)
{
var winSpecialEvent;
var left = parseInt((screen.availWidth/2) - (width/2));
var top = parseInt((screen.availHeight/2) - (height/2));
var strWindow="popup";
var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top + "toolbar=no,scrollbars=yes,menubar=no,resizable=yes";
myWindow = window.open(url, strWindow, windowFeatures);
//myWindow = window.open(strURL,strWindow, "width=710,height=600,toolbar=no,scrollbars=yes,menubar=no,location=center,resizable=yes");
myWindow.focus();
}





			
			
			
			
				
					
					
					
					
					
					
				
				
					
					
					
					
					
					
				
			
