function fixResult(){
	var status = document.getElementById("status_hidden").value;
	document.getElementById("status").innerHTML = status;
}

function confirmRead(){
	if(confirm('Kalan haber sayınızdan 1 haber düşülecektir. Onaylıyor musunuz?')){
		processingRead();
		return true;
	}
}

function processingRead(){
	jq.blockUI({
		theme:     true, // true to enable jQuery UI support 
        message:  '<h1>Haber getiriliyor..</h1>'});
}

function processingSearch(){
	jq.blockUI({
		theme:     true, // true to enable jQuery UI support 
        message:  '<h1>Aranıyor..</h1>'});
}

function processing(){
	jq.blockUI({
		theme:     true, // true to enable jQuery UI support 
        message:  ''});
}

function processingDone(){
	jq.unblockUI();
}

function print(elementId){
	jq('#'+elementId).printArea({mode: 'popup', popClose: true});
}
