﻿// JScript File
function showImage(img, tp)
{
    idbigimage.style.display = 'block';
    var pic = document.getElementById('idbigpic');
    pic.src = 'finishesbig/' + img + '.jpg';
    document.getElementById('lblText').value = tp;
}
function hideImage()
{
    idbigimage.style.display = 'none';
}

// distributed by http://hypergurl.com 
var popup="Sorry, right-click is disabled.\n\nThis Site Copyright ©2009"; 
function noway(go) 
{ 
if (document.all) 
    { 
    if (event.button == 2) 
        { 
            alert(popup); 
            return false; 
        } 
    } if (document.layers) 
{ 
if (go.which == 3) 
{ 
alert(popup); 
return false; 
} 
} 
} 
if (document.layers) 
{ 
document.captureEvents(Event.MOUSEDOWN); 
} 
document.onmousedown=noway;

function showImage1()
{
    idbigimage.style.display = 'block';
}
function hideImage1()
{
    idbigimage.style.display = 'none';
}
function showImage2(img, tp)
{
    idbigimage.style.display = 'block';
    var pic = document.getElementById('idbigpic');
    pic.src = 'edgeworkbig/' + img + '.jpg';
    document.getElementById('lblText').value = tp;
    //document.getElementById("<%=lblText.ClientID%>").innerText = tp;
}
function hideImage2()
{
    idbigimage.style.display = 'none';
}