function getBoxes(id){
    document.getElementById('4_div').innerHTML ="";
    for(var i=1;i<5;i++){
        if(i==id){
            document.getElementById(i+'_div').style.display='';
            if(i!=4) document.getElementById(i+'_td').style.backgroundColor='#705c55';
        }else{
            document.getElementById(i+'_div').style.display='none';
            if(i!=4) document.getElementById(i+'_td').style.backgroundColor='#34261d';
        }
    }

}


function check_form(){
    var skip;
    for(i = 0; i < document.all.length; i++){
        tag = document.all(i).tagName;
        className = document.all(i).className;
        thevalue = document.all(i).value;
        id = document.all(i).id;
        if( className=="required" && thevalue.length<1){
            alert("Please fill out all fields!");
            return false;
        }else if(className=="required2" && thevalue==''){
            alert("Please fill out all fields2!");
            return false;
        }

        if (document.getElementById('email').value !== document.getElementById('email2').value) {
				   alert("Your email addresses do not match");
				   document.getElementById('email').focus();
				   return false;
		}

    }
}



function getVideo(src) {
    getBoxes('4');
    document.getElementById('4_div').innerHTML='<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="288" width="394"> <param name="src" value="http://www.maddaloni.net/newsite/videos/'+ src +'"> <param name="autoplay" value="true"> <param name="target" value="myself"> <param name="controller" value="true"> <param name="href" value="http://www.maddaloni.net/newsite/videos/'+ src +'"> <param name="type" value="video/quicktime" height="260" width="394"> <embed src="http://www.maddaloni.net/newsite/videos/'+ src +'" height="260" width="394" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" controller="true" href="http://www.maddaloni.net/newsite/videos/christian_dior.mov" target="myself"></embed></object>';

}

function getFLV(src) {
    getBoxes('4');
    document.getElementById('4_div').innerHTML='<a href="http://www.maddaloni.net/videos/'+ src +'" style="display:block;width:394px;height:288px" id="player"></a>';
    flowplayer("player", "http://www.maddaloni.net/flowplayer/flowplayer-3.1.1.swf");
}
