//////////////////////////////////////////////////////////////////////
//																	//
//					יאללה - קניון וירטואלי							//
//					http://www.yalla.co.il							//
//																	//
//////////////////////////////////////////////////////////////////////

function myfiles(inputName,folder,storeId)
{
	window.open('./?view=myfiles&storeid=' + storeId + '&input=' + inputName + '&filder=' + folder, 'myfilesWindow', 'menubar=0,resizable=0,scrollbars=1,top=100,left=200,width=450,height=500');
}

function myfiles_select(value,input)
{
	opener.document.getElementById(input).value = value;
	window.close();
}

function category_movelocation(value,storeid)
{
	if(value)
	{
		window.location.href = './?view=mystore&storeid=' + storeid + '&manage=products&act=add&cat=' + value;
	}
}

var checkflag = "false";
function checkAll(field)
{
	if (checkflag == "false") {
		for (i = 0; i < field.length; i++) {
			field[i].checked = true;
		}
		checkflag = "true";
		return "Uncheck all";
	} else {
		for (i = 0; i < field.length; i++) {
			field[i].checked = false;
		}
		checkflag = "false";
		return "Check all";
	}
}

function Checkall(form)
{
  for (var i = 1; i < form.elements.length; i++){    
    eval("form.elements[" + i + "].checked = form.elements[1].checked");  
  } 
}

function AreYouSure(ques)
{
  return confirm(ques);
}