﻿// JScript File
function OpenWindowViewer(path) {
	if ( path.indexOf("/videos/NewVideo/index.html") != -1) {
	    //three week delivery
	    //window.open(path,"","width=520,height=330");
	    window.open(path,"","width=660,height=420");
	}
	else if ( path.indexOf("/videos/final_video/index.html") != -1) {
	    //camlift
	    window.open(path,"","width=660,height=420");
	}
	
	else if ( path.indexOf("/videos/scrap/index.html") != -1) {
	    //scrap
	    //window.open(path,"","width=500,height=350");
	    window.open(path,"","width=660,height=420");
	}

	else if ( path.indexOf("/videos/NEI/index.html") != -1) {
	    //scrap
	    //window.open(path,"","width=500,height=350");
	    window.open(path,"","width=660,height=420");
	}
	
	else if ( path.indexOf("/videos/capabilites/index.html") != -1) {
	    window.open(path,"","width=500,height=350");
	}
	
	else if ( path.indexOf("/videos/DWP/index.html") != -1) {
	    //DWP installation
	    //window.open(path,"","width=340,height=300");
	    window.open(path,"","width=660,height=420");
	}
        else if (path.indexOf("videos") != -1){
            window.open(path,"","width=340,height=300");
        } else {
            window.open(path);
        }
        
        //31 JUL 2008
        //Added by J. Ozburn - Avastone
        //Force drop down settings back to the first index so the same item can be reselected
        if (document.getElementById("ctl00_ConstructionMunicipalDropdown1_DropDownListCM") != null) {
            document.getElementById("ctl00_ConstructionMunicipalDropdown1_DropDownListCM").selectedIndex = 0;
        }
        if (document.getElementById("ctl00_ConstructionMunicipalDropdown1_DropDownListTG") != null) {
            document.getElementById("ctl00_ConstructionMunicipalDropdown1_DropDownListTG").selectedIndex = 0;
        }
        if (document.getElementById("ctl00_TreeGrateDropdown1_DropDownListCM") != null) {
            document.getElementById("ctl00_TreeGrateDropdown1_DropDownListCM").selectedIndex = 0;
        }
        if (document.getElementById("ctl00_TreeGrateDropdown1_DropDownListTG") != null) {
            document.getElementById("ctl00_TreeGrateDropdown1_DropDownListTG").selectedIndex = 0;
        }
       
        
    }
