function createPopup(src, target, width, height, params) {
	var target = target || "PopupWindow";
	dialogParams = params;
	var top = (screen.height-height)/2;
	var left = (screen.width-width)/2;
	popupWindow = window.open(src, target, "toolbar=no. location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyright=no, top="+top+", left="+left+", width="+width+", height="+height+"");
	popupWindow.focus();
}

$(function(){

$('a.printp').click(function(e){
	e.preventDefault();
	var url = $(this).attr('href');
	window.open(url, 'pav',"location=1,status=1,scrollbars=1,width=670,height=450");
});

$('a.more_news_a').click(function(e){
	e.preventDefault();
	$('#more_news').show();
	$(this).hide();
});

});



$(function(){


    $('.hideshow').css('display', 'none');
    $('.comptitle').css('cursor', 'pointer');

    $('.boxarea').click(function(){

        

        
        $('.hideshow').css('display', 'none');
        $(this).children('.hideshow').css('display', 'block');
       
	
});

})

