//Atver jaunu logu
function WOpen(href, w, h) {
	var left = ( screen.availWidth  - w ) / 2;
	var top = ( screen.availHeight  - h ) / 2;
	if( left < 0 ) {
		left = 0;
	}
	if( top < 0 ) {
		top = 0;
	}
	window.open(href, "", "left="+left+", top="+top+", width="+w+", height="+h+", menubar=no, status=no, location=no, toolbar=no, scrollbars=1, resizable=yes");
}

function Redirect(_url) {
	document.location.href = _url;
}

function ReloadParent() {
	window.opener.location.reload(true);
}

function ConfRedirect(_title,_url) {
	if (confirm(_title)) document.location.href = _url;
}

function DelConfirm(_url) {
	ConfRedirect("Vai tiešām dzēst?",_url);
}


