﻿// JScript File

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 Wherecanibuy(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(){
	if(window.event.keyCode == 13)
	{
		var txtSearch= document.getElementById("SearchTerm");
		
		 document.location.href="search.aspx?searchterm=" + txtSearch.value;
	}
}