var hostTarget = "www.mupromo.com";
var bundleID = 593;

function widgetClick(e) {
	window.location.href = "https://"+hostTarget+"/purchreg.php?pid="+bundleID;
	return false; // suppress further click default action
}

function drawerClick(e) {
	window.location.href = "http://"+hostTarget;
	return false; // suppress further click default action
}

function iconClick(e, prodid) {
		/// stop event bubbling (else we'll inadvertently fire widgetClick() also)
	if (!e) var e = window.event;
	e.cancelBubble =  true;
	if (e.stopPropagation) e.stopPropagation();
		/// actually do action
	toggleVisibleProduct("products"+prodid);
}

function buyClick(e) {
		/// stop event bubbling (else we'll inadvertently fire widgetClick() also)
	if (!e) var e = window.event;
	e.cancelBubble =  true;
	if (e.stopPropagation) e.stopPropagation();
		/// actually do action
	window.location.href = "https://"+hostTarget+"/purchreg.php?pid="+bundleID;
}

