
hzKat	= new showHZKatalog();

function showHZKatalog()
{

	this.katalogSrc				= "http://www.horizonte-schmuck.de/de/5e40e86e355b663c01502274d66c3312/Haendlerkatalog.html";
	this.katalogName			= "Horizonte 2010";
	this.katalogThumb			= "http://www.horizonte-schmuck.de/bilder/kataloge/haendler/24-10-U1_thumb.jpg";
	this.linkKlasse				= "";
	
	this.showTextLink			= false;
	this.showPicLink			= false;
	
	var thisInstance				= this;
	
	this.textLink				= document.createElement("a");
	this.textLink.title			= this.katalogName+" oeffnen";
	this.textLink.onclick		= function()	{ thisInstance.openkat(); }
	this.textLink.innerHTML		= this.katalogName;
	this.textLink.className		= this.linkKlasse;
	this.textLink.style.cursor	= "pointer";
	
	
	this.katThumb				= document.createElement("img");
	this.katThumb.src			= this.katalogThumb;
	this.katThumb.style.display	= "block";
	this.katThumb.style.border	= "0";
	this.katThumb.style.cursor	= "pointer";
	this.katThumb.onclick		= function()	{ thisInstance.openkat(); }
	
	
	if ( this.showPicLink == true)	{
		document.getElementById("katalog5e40e86e355b663c01502274d66c3312").appendChild(this.katThumb);
	}
	
	if ( this.showTextLink != false)	{
		document.getElementById("katalog5e40e86e355b663c01502274d66c3312").appendChild(this.textLink);
	}
	
	this.openkat	= function()	
		{
		var outerDiv				= document.createElement("div");
		outerDiv.style.display		= "block";
		outerDiv.style.position		= "fixed";
		outerDiv.style.zIndex		= 5000;
		outerDiv.style.top			= "0";
		outerDiv.style.left			= "0";
		outerDiv.style.background	= "transparent url(http://www.horizonte-schmuck.de/bilder/layout/"+
										"trans.png) repeat scroll 0 0";
		outerDiv.style.width		= "100%";
		outerDiv.style.height		= "100%";
		
		var innerDiv				= document.createElement("div");
		innerDiv.style.margin		= "50px auto";
		innerDiv.style.width		= "971px";
		innerDiv.style.height		= "650px";
		innerDiv.style.position		= "relative";
		innerDiv.style.background	= "#FFFFFF";	
		innerDiv.style.border		= "1px solid #000000";
		innerDiv.style.textAlign	= "right";
		
		var closeButton				= document.createElement("img");
		
		closeButton.src				= "http://www.horizonte-schmuck.de/bilder/layout/katalogschliessen.gif";
		closeButton.style.right		= "0px";
		closeButton.display			= "block";
		closeButton.style.cursor	= "pointer";
		var instanz					= this;
		closeButton.onclick			= function()	{
			outerDiv.style.display	= "none";
			instanz.textLink.onclick		= function(){ outerDiv.style.display	= "block"; }
		
		}
		
		
		var iFrame					= document.createElement("iframe");
		iFrame.src					= this.katalogSrc;
		iFrame.style.width			= "100%";
		iFrame.style.height			= "100%";
		iFrame.style.border			= "0";
		iFrame.frameBorder			= "no";
		iFrame.setAttribute('frameborder', '0');
		
	
		innerDiv.appendChild(closeButton);
		innerDiv.appendChild(iFrame);
		outerDiv.appendChild(innerDiv);	
		document.body.appendChild(outerDiv);
		
		
	}
	
}