﻿// JScript File

function EnterKey(e) {
    var key;

    if (window.event)
        key = window.event.keyCode;     //IE 
    else
        key = e.which;     //firefox

    if (key == 13) {
        var txtSearch = document.getElementById("SearchTerm");
        document.location.href = "search.aspx?searchterm=" + txtSearch.value;
    }
}
function mostpopular() {
     window.location.href = "mostpopular.aspx";
 }
function newrelease(){
    window.location.href="recentadditions.aspx";
 }
 function giftitems() {
     window.location.href = "giftfinder.aspx";
 }
 function onsalenow() {
     window.location.href = "outlet.aspx";
 }
 function home() {
     window.location.href = "default.aspx";
 }
 function contactus() {
     window.location.href = "t-cgcontact.aspx";
 }
 function shoppingcart() {
     window.location.href = "shoppingcart.aspx";
 }
 function returns() {
     window.location.href = "t-cgreturns.aspx";
 }
 function privacy() {
     window.location.href = "t-cgprivacy.aspx";
 }
 function search() {
     var txtSearch = document.getElementById("SearchTerm");
     window.location.href = "search.aspx?searchterm=" + txtSearch.value;
 }
 function DealerSearch() {
    var txtDealer= document.getElementById("txtDealer");
    window.location.href="dealers.aspx?searchterm=" + txtDealer.value;
 }
 function showPortfolio(id){
     window.location.href="portfolio.aspx?manid=" + id;
 }

 function showCanvas(id){
     window.location.href="canvas.aspx?manid=" + id;
 }


 function showHowCreated(link){
 
    window.location.href = link;
 }
 
 function showQuote(link){
 
    window.location.href = link;
 }
 
 function showHelp(id){
    window.open('popupShowHelp.aspx?ProductID=' + id,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="auto",resizable="yes",copyhistory=no,width=300,height=200,left=0,top=0');
}

function showArtistOptIn(id){
    window.open('popupOptIn.aspx?ArtistID=' + id,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="no",resizable="yes",copyhistory=no,width=300,height=200,left=300,top=300');
}

function showProductOptIn(id){
    window.open('popupOptIn.aspx?ProductID=' + id,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="no",resizable="yes",copyhistory=no,width=300,height=200,left=300,top=300');
}

function searchenter(e)
 {
  e = e || window.event;
  var code = e.keyCode || e.which;
  if (code == 13) {
   var txtSearch = document.getElementById("SearchTerm"); 
   document.location.href = "search.aspx?searchterm=" + txtSearch.value;
  }
 }
//function searchenter() {
//    if (window.event.keyCode == 13) {
//        var txtSearch = document.getElementById("SearchTerm");

//        document.location.href = "search.aspx?searchterm=" + txtSearch.value;
//    }
//}

function removetext(id) {
    id.text;
}

function mouseover(bg, id)
{
    document.getElementById(id).style.background = "url(" + bg + ") no-repeat center top";
}

function mouseout(mo, id) {
    document.getElementById(id).style.background = "url(" + mo + ") no-repeat center top";
}
