// JavaScript Document

function yesNoDialog ( redirect )
{
	var answer = confirm ( ' Сигурни ли сте, че желаете да изтриете този запис? ' );
	if (answer){
		window.location = redirect;
	}
}

function dconvr ( obj )
{
	var result = document.getElementById(obj);	
	var year = document.getElementById(obj+'_y');	
	var month = document.getElementById(obj+'_m');	
	var day = document.getElementById(obj+'_d');
	result.value = year.value + '-' + month.value + '-' + day.value;
}

function reloadPagesNum()
	{
		var ajax = new sack();
		var vars = document.getElementById("setRowsOnPage");
		//ajax.requestFile = 'http://www.zebra-online.com/index.php?page=aspage&rp=' + vars.value;
		ajax.requestFile = 'http://localhost/clients/lubo/index.php?page=aspage&rp=' + vars.value;
		ajax.onCompletion =  function(){ window.location.reload(); };
		ajax.runAJAX();
	}
	
function reloadPage(url)
{
	window.location.href = url;
}
	
function loadProductPic( url ) 
{
	document.getElementById('productImg').src = url;
}