function closeopen(p,w,h,l,t)
{

		var tb_overlay = document.createElement('div')
		tb_overlay.id = "TB_overlay";
		tb_overlay.style.display = "none";
		document.body.appendChild(tb_overlay);
		yScroll = document.body.clientHeight;
		tb_overlay.style.height = yScroll+" px";
		tb_overlay.style.display = "block";
		var tb_window = document.createElement('div')
		tb_window.id = "TB_window";
		document.body.appendChild(tb_window);
		document.getElementById("TB_window").style.display = "block";
		imgPreloader = new Image();
		imgPreloader.src = 'images/logos/"+p+".jpg';	
		TB_WIDTH = w ;
		TB_HEIGHT = h + 60;
		document.getElementById("TB_window").innerHTML += "<img id='TB_Image' src='images/big/"+p+".jpg' width='"+w+"' height='"+h+"' alt='"+p+"'/>"
		+ "<div id='TB_closeWindow'><a href='#"+l+"' onclick='TB_remove()' id='TB_closeWindowButton' class='cla3' title='Close'><strong><span style='font-size:18px;'>X</span></strong></a>&nbsp;&nbsp;&nbsp;"+t+"</div>" ;
		TB_position();
		document.getElementById("TB_window").style.display = "block";
} 
function TB_remove() {
	document.body.removeChild( document.getElementById("TB_window") );
	document.body.removeChild( document.getElementById("TB_overlay") );
	return false;
}
function TB_position() {
	var de = document.documentElement;
	var w = self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
	var h = self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
	document.getElementById("TB_window").style.width = TB_WIDTH+"px";
	//document.getElementById("TB_window").style.height = TB_HEIGHT+"px";
	document.getElementById("TB_window").style.left = ((w - TB_WIDTH)/2)+"px";
	document.getElementById("TB_window").style.top = ((h - TB_HEIGHT)/2)+"px";

	

}