// JavaScript Document
<!--

// Stock availablity

var pack = "(IN STOCK)";


// Stock availablity

function fill_promos(){

// Start Promo left 1
document.getElementById('cymbals_meinl_mcs_packs_price').innerHTML = "219 "; // Price
document.getElementById('cymbals_meinl_mcs_packs_price').innerHTML = "219 "; // Price
document.getElementById('cymbals_meinl_mcs_packs_image').src = "img/cymbals_meinl_mcs_packs.jpg"; // Image file location
document.getElementById('cymbals_meinl_mcs_packs_details').innerHTML = ""; // Product details
document.getElementById('cymbals_meinl_mcs_packs_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_meinl_mcs_pack_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo left 1

}

// ********* NEW modifiers coding DO NOT CHANGE BELOW *********

function renderDrop(x){ // this is where all the modifier selections are rendered into the HTML - see me if you need to change any of these modifiers in romancart

	if (x=="pack"){
	document.write("<select id=cymbals_meinl_mcs_packs_selector><option value=set>Meinl MCS Performance Set "+pack+"</option></select>");
	}


}

function sendMod(x){ // this is what sends the modifiers to romancart - see me if you need to add or remove any cymbals from this range
	if (x=="pack"){
	var a = document.getElementById('cymbals_meinl_mcs_packs_landing').href;
	var b = document.getElementById('cymbals_meinl_mcs_packs_selector').options[document.getElementById('cymbals_meinl_mcs_packs_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}


}

// ********* NEW modifiers coding DO NOT CHANGE ABOVE *********

//-->

