function openWindow(_URL,_width,_height,_scrollbars) {
    var _left=(screen.availWidth/2)-(_width/2);
    var _top=(screen.availHeight/2)-(_height/2);
    window.open(_URL,"popupWindow","directories=no,menubar=no,location=yes,resizable=yes,scrollbars="+_scrollbars+",status=no,toolbar=no,height="+_height+",width="+_width+",left="+_left+",top="+_top);
}
$(document).ready(function(){
	$('.more').click(function(){
		var rowcontent = $('.row.content');
		if($(rowcontent).css('border-bottom-width') == '1px') {
			$(rowcontent).css('border-bottom-width','0px');
		} else {
			$(rowcontent).css('border-bottom-width','1px');
		}
		$('.row.content-more').slideToggle('slow');
	})
});
