<!--
// Popups comment window
function viewComments(n) {
	window.open('http://www.pangilinan.net/weblog/comments.php?' + n, 'comments' + n, 'directories=0,height=500,location=0,resizable=1,scrollbars=1,toolbar=0,width=400');
}

// Popups new window
function OpenPopup(URL, width, height) {
	window.open(URL, "popup", "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=0");

}

// Dropdown menu redirect
function formHandler(form){
	var URL = document.form.site.options[document.form.site.selectedIndex].value;
	window.location.href = URL;
}


// Dropdown link redirect
function menuHandler(forms){
	var URL = document.forms.sites.options[document.forms.sites.selectedIndex].value;
	window.location.href = URL;
}

// -->