htArtTotal = 8;
htArtStart = 8;
htArtTot = 8;

function HTshowStartArt() {
	Ap = new Image();
	
	Ap.src="/hecatomb/images/art_preview_x" + htArtTot + ".jpg";

    window.document.Ap1.src=Ap.src;
	  
}	

function HTshowNextArt() {
	Ap = new Image();
	
	htArtTot += 1;
	
	if (htArtTot > htArtTotal) {
		htArtTot = 1; 
	}
	
	Ap.src="/hecatomb/images/art_preview_x" + htArtTot + ".jpg";

    window.document.Ap1.src=Ap.src;
	  
}	  
   
   
function HTshowPrevArt() {
	Ap = new Image();
	
	htArtTot -= 1;
	
	if (htArtTot < 1) {
		htArtTot = htArtTotal; 
	}
	
	Ap.src="/hecatomb/images/art_preview_x" + htArtTot + ".jpg";

    window.document.Ap1.src=Ap.src;
	  
}	   

function HTshowArt() {

window.open("/hecatomb/art_window_x" + htArtTot + ".asp","","width=505,height=580,resizable=yes")
	  
}	

function HTshowArt2(artvalue) {

window.open("/hecatomb/art_window_" + artvalue + ".asp","","width=505,height=580,resizable=yes")
	  
}	

function HTshowArt3(artvalue) {

window.open("/hecatomb/art_window_x" + artvalue + ".asp","","width=505,height=580,resizable=yes")
	  
}	

function HTshowCard(htcard) {

var htcardnum = htcard

window.open("/hecatomb/preview_card_" + htcardnum + ".asp","","width=505,height=580,resizable=yes")
	  
}