// GalleryPopUp
function gallery_popup(url)
{
	window.open(url,"_blank","width=710, height=550, scrollbars=0");
}

// SoundPopUp
function sound_popup(url)
{
	window.open(url,"_blank","width=200, height=200");
}

function setcart(id,code,type,mod)
{
	document.dataForm.id.value=id;
	document.dataForm.code.value=code;
	document.dataForm.type.value=type;
	document.dataForm.mod.value=mod;
	if(mod=='update')
	{
		document.dataForm.quantity.value=document.dataForm['quantity#'+type+'#'+id+'#'+code].value;
	}
	document.dataForm.submit();
}
