// Carl Fischer Drums, Site Functions

//Add to Shopping Cart
function addToCart(itemID) {
	alert("You are now being re-directed to the Theodore Presser shopping cart for checkout.");
        theAction = 'Add'; 
        theSourcePub = 'Carl Fischer Drums';
        theSourceURL = 'http://www.carlfischerdrums.com';
        theURL = 'http://www.presser.com/e-Store/Cart/externalCart.cfm?Action='+theAction+'&ItemID='+itemID+'&SourceSite='+escape(theSourcePub)+'&SourceURL='+escape(theSourceURL);
        if(typeof(presserCartWindow)=='undefined') { 
                presserCartWindow = window.open(theURL,'presserCart','height=300,width=600,scrollbars,resizable,status,menubar');
        } else {
                if(!presserCartWindow.closed) { 
                        presserCartWindow.location.href = theURL;
                } else {
                        presserCartWindow = window.open(theURL,'presserCart','height=300,width=600,scrollbars,resizable,status,menubar');
                }
        }
        presserCartWindow.focus();
}
function openCart(){
	window.open('http://www.presser.com/e-Store/Cart/externalCart.cfm','presserCart','height=300,width=600,scrollbars,resizable,status,menubar');
}
