// JavaScript Document



/* Set iframe height 
id="the_iframe" onLoad="calcHeight();" height="1"
*/
function calcHeight()
{
//find the height of the internal page
var the_height= document.getElementById('the_iframe').contentWindow.document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe').height= the_height;
}


// Main Page ---------------------------------
 // Talk to Flash for Ditt - Shade
function sayDeck(name){
	document.getElementById("divLeftCover").style.display="none";
	document.getElementById("head1").innerHTML = "ditt-deck";
	//document.getElementById("infoCopy").innerHTML = '"Ditt-Deck" extruded aluminum walkway covers enhance school, hospital and other institutional architecture while being totally maintenance free. The internal drainage system contributes to the uncluttered beauty of our carefully designed and engineered system.';
	document.getElementById("gallery").innerHTML = "<p><a href = \"mainGallery.php?area_id=Ditt-Deck \">Visit our Gallery</a></p><p><a href = \"mainSpecs.php?area_id=Ditt-Deck \">Brochures</a></p><p><a href = \"mainBrochure.php?area_id=Ditt-Deck \">Resources</a></p>";


	//document.getElementById("divFLAinfoHolder").style.backgroundImage = "url('images/logoMark.gif')";
	
	
	return name;
}

// Talk to Flash for Ditt - Dome
function sayDome(name){
	document.getElementById("divLeftCover").style.display="none";
	document.getElementById("head1").innerHTML = "ditt-dome";
	//document.getElementById("infoCopy").innerHTML = '"Ditt-Dome" extruded aluminum & acrylic walkway covers have earned a reputation for their durability, as well as their beauty. Our procedure of assemble then disassemble assures us that all components will bring forth trouble free product installation.';
	document.getElementById("gallery").innerHTML = "<p><a href = \"mainGallery.php?area_id=Ditt-Dome \">Visit our Gallery</a></p><p><a href = \"mainSpecs.php?area_id=Ditt-Dome \">Resources</a></p><p><a href = \"mainBrochure.php?area_id=Ditt-Dome \">Brochures</a></p>";
//document.getElementById("divFLAinfoHolder").style.backgroundImage = "url('images/logoMark.gif')";


	return name;
}

// Talk to Flash for Ditt - Dome
function sayShade(name){
	document.getElementById("divLeftCover").style.display="none";
	document.getElementById("head1").innerHTML = "ditt-shade";
	//document.getElementById("infoCopy").innerHTML = 'The durability of our extruded aluminum louvers blends perfectly with its use as a sunshade device. As with all of our products, attention to detail sets our sunshade devices apart from the rest.';
	document.getElementById("gallery").innerHTML = "<p><a href = \"mainGallery.php?area_id=Ditt-Shade \">Visit our Gallery</a></p><p><a href = \"mainSpecs.php?area_id=Ditt-Shade \">Resources</a></p><p><a href = \"mainBrochure.php?area_id=Ditt-Shade \">Brochures</a></p>";
//document.getElementById("divFLAinfoHolder").style.backgroundImage = "url('images/logoMark.gif')";
	
	return name;
}
// Talk to Flash Clear all
function sayClear(name){
	document.getElementById("divLeftCover").style.display="block";
	document.getElementById("head1").innerHTML = "";
	document.getElementById("infoCopy").innerHTML = "";
	document.getElementById("gallery").innerHTML = "";
	//document.getElementById("divFLAinfoHolder").style.backgroundImage = "";
	
	return name;
}


