﻿function facebookShare() {
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}

function reloadThemes(cbo) {
	var sectionId = cbo.value;
	var postStr = "sectionId=" + sectionId;
	
	$.post("loadThemes.asp", postStr, function(data) {
			if(data.indexOf("ERROR") < 0) {
				//$("#tr_" + lineId + " > td").css("background", "#ddffac");
				$("#themeId").html(data);
			}
			else {
				alert(data);
				//$("#tr_" + lineId + " > td").css("background", "#ff7f4f");
			}
			
   } );
	
}
