var refresh;

function ShopProductImageZoom(product_id, width, height) {
	height = parseInt(height) + 28;
	w = window.open('/shop/product_image_zoom.php?product_id=' + product_id, 'zoom', 'width=' + width + ', height='+height + ', top=0, left=0');
	w.focus();
}

function ShopOrderFormDeliveryDataDisplay(status) {
	var obj = document.getElementsByName('delivery_data_deviant');
	
	if(status == 'delivery_data') {
		var action = '';
	}
	else {
		var action = 'none';
	}


	for(var i = 0; i < obj.length; i++) {
		obj[i].style.display = action;
	}
}

function ShopProductAudition(audition_url) {
	w = window.open(audition_url, 'audition', 'width=302, height=300');
	w.focus();
}

function ShopCalc(cost) {
	w = window.open('/shop/calc.php?calc[cost]=' + cost + '&calc[runtime]=12&button=calc', 'calc', 'width=600, height=480, top=0, left=0');
	w.focus();
}