

function ShowRod()
{
var rodSelect = document.toCart.rodSelect.options[document.toCart.rodSelect.selectedIndex].value;
var rods_array=rodSelect.split("/"); //split a string into an array, where there is "/" character
if (rods_array[1] == '0') { 
var rImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
var rhImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
var rnImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
document.ShowRodDesign.width = 1;
document.ShowRodHand.width = 1;
document.numRod.width = 1;
} else {
var rImage = "http://www.tapestrycatalogue.com/product_images/small/" + rods_array[1] + ".jpg";
var rhImage = "http://www.tapestrycatalogue.com/images/right-arrow-icon.gif";
var rnImage = "http://www.tapestrycatalogue.com/images/xp2.gif";
document.ShowRodDesign.width = 100;
document.ShowRodHand.width = 10;
document.numRod.width = 20;
}
document.ShowRodDesign.src = rImage;
document.ShowRodHand.src = rhImage;
document.numRod.src = rnImage;
}


function ShowTas()
{
var tasSelect = document.toCart.tasSelect.options[document.toCart.tasSelect.selectedIndex].value;
var tas_array=tasSelect.split("/"); //split a string into an array, where there is "/" character
if (tas_array[1] == '0') {  
var sImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
var shImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
var snImage = "http://www.tapestrycatalogue.com/images/spacer.gif";
document.ShowTasDesign.width = 1;
document.ShowTasHand.width = 1;
document.numTas.width = 1;
} else {
var sImage = "http://www.tapestrycatalogue.com/product_images/small/" + tas_array[1] + ".jpg";
var shImage = "http://www.tapestrycatalogue.com/images/right-arrow-icon.gif";
var snImage = "http://www.tapestrycatalogue.com/images/xp3.gif";
document.ShowTasDesign.width = 100;
document.ShowTasHand.width = 10;
document.numTas.width = 20;
}
document.ShowTasDesign.src = sImage;
document.ShowTasHand.src = shImage;
document.numTas.src = snImage;
}


function RodPop()
{
targetitem = document.toCart.rodSelect;
dataitem = window.open("http://www.tapestrycatalogue.com/rod-specials.php", "dataitem", "toolbar=no,menubar=no,scrollbars=yes,height=600,width=800"); 
dataitem.targetitem = targetitem;
dataitem.focus();
}
 
 
function TasPop()
{
targetitem = document.toCart.tasSelect;
dataitem = window.open("http://www.tapestrycatalogue.com/tassel-specials.php", "dataitem", "toolbar=no,menubar=no,scrollbars=yes,height=700,width=800"); 
dataitem.targetitem = targetitem;
dataitem.focus();
}


 