﻿var press_images = new Array("images/content/about/press/tab_content_news.jpg", "images/content/about/press/tab_content_release.jpg", 
    "images/content/about/press/tab_content_contacts.jpg", "images/content/about/press/tab_content_images.jpg");

for (var i = 0; i < press_images.length; i++) {
    var img = new Image();
    img.src = press_images[i].toString();
}

function AboutIFrame_PressTabClick(id) {
    var container = window.frames['ifrm_tertiary_content'].document.getElementById('tab_content_press');
    container.className = 'press_' + id;

    var content_divs = new Array('news', 'release', 'contacts', 'images');
    for (var i = 0; i < content_divs.length; i++) {
        window.frames['ifrm_tertiary_content'].document.getElementById(content_divs[i].toString() + '_content').style.display = 'none';
    }

    var divContent = window.frames['ifrm_tertiary_content'].document.getElementById(id + '_content');
    divContent.style.display = 'block';
}


function AboutIFrame_PressImagesDisplay(id) {
    var array = new Array("vistancia", "encanterra", "riovista", "vineyards", "central", "glenivy", "laquinta", "redmondridge", "victoriagardens");
    for (var i = 0; i < array.length; i++) {
        
        var link = window.frames['ifrm_tertiary_content'].document.getElementById('press_link_' + array[i].toString());
        var imgs = window.frames['ifrm_tertiary_content'].document.getElementById('press_images_' + array[i].toString());
        
        link.className = '';
        imgs.style.display = 'none';
    }

    var link = window.frames['ifrm_tertiary_content'].document.getElementById('press_link_' + id);
    var imgs = window.frames['ifrm_tertiary_content'].document.getElementById('press_images_' + id);

    link.className = 'active';
    imgs.style.display = 'block';
}

function AboutIFrame_OpenImgDownload(directory,imgname,hires,title) {
	var base_href = document.getElementsByTagName('base')[0].href;
    var url = base_href + '/cfm/about/press/download.cfm?dir=' + directory + '&img=' + imgname + '&hires=' + hires + '&title=' + title;
    var name = 'Press_Image_Download';
    var attr = 'location=0,resizable=0,scrollbars=0,width=350,height=391';

    var winl = (screen.width - 350) / 2;
    var wint = (screen.height - 391) / 2;

    attr += ',top=' + wint + ',left=' + winl;

    window.open(url, name, attr);
}

function AboutIFrame_NewsDetailDisplay(newsid) {
	var base_href = document.getElementsByTagName('base')[0].href;
    var url = base_href + '/cfm/about/press/newsdetail.cfm?nid=' + newsid;
    var name = 'News_Detail';
    var attr = 'location=0,resizable=0,scrollbars=0,width=550,height=614';

    var winl = (screen.width - 550) / 2;
    var wint = (screen.height - 614) / 2;

    attr += ',top=' + wint + ',left=' + winl;

    window.open(url, name, attr);
}

function AboutIFrame_ExternalVideoDisplay(url,height,width) {
	//var base_href = document.getElementsByTagName('base')[0].href;
    //var url = base_href + '/cfm/about/press/newsdetail.cfm?nid=' + newsid;
    var name = 'Video_Detail';
    var attr = 'location=0,resizable=0,scrollbars=0,width=' + width + ',height=' + height + '';

    var winl = (screen.width - width) / 2;
    var wint = (screen.height - height) / 2;

    attr += ',top=' + wint + ',left=' + winl;

    window.open(url, name, attr);
}
