function ConfirmDel(WhereToGo)
{
	var a;
	a = confirm('האם אתה בטוח שברצונך לבצע פעולה זו?');
	if(a)
	{
		document.location.href = WhereToGo;
	}
}
function GoToPage(WhereToGo)
{
	document.location.href = WhereToGo;
}
function SearchCheck(FrmS)
{
	if(FrmS.WSearch.value.length < 2)
	{
		alert('Please type search word');
		return false;
	} 
	else
	{
	//FrmS.action = FrmS.section.value + '.asp'
	FrmS.action = 'search.asp'
	return true;
	}
}
function VerifySubmit(FrmS)
{
	var a;
	a = confirm('האם אתה בטוח שברצונך לבצע פעולה זו?');
	if(a)
		return true;
	else
		return false;	
}

function ShowOdrFererer(WhereToGo)
{
	var a;
	a = confirm('הקונה הגיע דרך האתר \n ' + WhereToGo + '\n\n\n ?האם ברצונך לצפות בדף זה \n' );
	if(a)
	{
		window.open(WhereToGo);
	}
}

function PrintVersion()
{
	var fwindowName,windowContent				
	windowContent = document.getElementById('PrintArea').innerHTML
		windowContent = '<html><head></head><title>Print Version</title><body onload="window.print();"><link rel="stylesheet" href="style.css">' + windowContent + '</body></html>'
	fwindowName = window.open('','fPrintVersion','width:500,toolbar:no,scrollbars=yes,resizable=yes,status=no,menubar=no');
	fwindowName.window.document.write(windowContent);
	//fwindowName.print();
	fwindowName.location.reload();
}

