<!--

function YeniPencere(url, w, h, t)
{
        w += 32;
        h += 96;
	var win = window.open(url,
		t, 
		'width=' + w + ', height=' + h + ', ' +
		'location=no, menubar=no, ' +
		'status=no, toolbar=no, scrollbars=yes, resizable=no');
	win.resizeTo(w, h);
	win.focus();
}

function addSelectedCategoryToParent(str) {
self.opener.addToValues(str);
window.close();
}

function changeLocation(str) {
window.location=str;
}

//-->