	function moveLayer()
	{
    
    //alert("moveLayer");
    
		var oElement = document.getElementById("ppcontentAreaOverlay");
		oElement.style.left = "0px";
		oElement.style.width = "756px";
    
    document.getElementById('product-intro').style.display = "none";

    writeSWF();

	}
    
	// write swf to layer
	function writeSWF()
	{
		//alert('writeSWF');
        var so = new SWFObject("/NOKIA_SPAIN_20/Find_and_Compare/6500_classic/flash/Wrapper.swf", "6500_content", "756", "330", "8", "");
        //so.addParam("wmode", "transparent");
        
        so.addVariable("swfPath", "/NOKIA_SPAIN_20/Find_and_Compare/6500_classic/flash/");
        
        so.addVariable("localisation", "/NOKIA_SPAIN_20/Find_and_Compare/6500_classic/xml/dictionary.xml");

        so.write("ppcontentAreaOverlay");

	}

	// write swf to layer
	function writePromoSWF()
	{
        var so = new SWFObject("/NOKIA_SPAIN_20/Find_and_Compare/6500_classic/flash/flash_curtain.swf", "6500_teaser", "281", "372", "8", "");
        so.addParam("wmode", "transparent");
        
        so.addVariable("localisation", "/NOKIA_SPAIN_20/Find_and_Compare/6500_classic/xml/curtain.xml");
        
        so.write("ppcontentAreaOverlay");
	}
    
	function closeLayers()
	{
		//alert("closeLayers");
        
        var oElement = document.getElementById("ppcontentAreaOverlay");
        
		oElement.style.left = "507px";
		oElement.style.width = "281px";
        
        writePromoSWF();
        
        document.getElementById('product-intro').style.display = "block";
        
	}

