﻿// JScript File
function openPic(nameFile){
//	var win = window.open("http://localhost:3109/AuctionSoftPlus/_IncCMS/ViewImage.aspx?imgName=" + nameFile, "PortfolioView", "height=555, width=765, resizable=yes, scrollbars=no");
    var win = window.open("http://www.cpca-cms.ca/_IncCMS/ViewImage.aspx?imgName=" + nameFile, "PortfolioView", "height=555, width=765, resizable=yes, scrollbars=no");

	win.focus();
}
// JScript File
function openPicLrg(nameFile){
//	var win = window.open("http://localhost:3109/AuctionSoftPlus/_IncCMS/ViewImage.aspx?imgName=" + nameFile, "PortfolioView", "height=750, width=1050, resizable=yes, scrollbars=no");
    var win = window.open("http://www.cpca-cms.ca/_IncCMS/ViewImage.aspx?imgName=" + nameFile, "PortfolioView", "height=750, width=1050, resizable=yes, scrollbars=no");

	win.focus();
}

// HIDE OR SHOW ELEMENTS
function hideElement(getElem){
//Hides the font select area
 var ElemArea = document.getElementById(getElem);
 ElemArea.style.display = "none"
 
}
 
function showElement(getElem){
//Displays the font select area
 var ElemArea = document.getElementById(getElem);
 
 ElemArea.style.display = "inline"
}
