var pageUrl;

function itemCompare(towid,katid,marid,tryb) {
	$.ajax({
		type:  "get",
		url:   pageUrl,
		cache: false,
		data:  "q[s]=porajax&towid="+towid+"&katid="+katid+"&marid="+marid+"&tryb="+tryb,
		/*success: function(data,msg,resp){
			alert(msg);
		},*/
		error: function(resp,msg){
			alert(resp.responseText);
		},
		complete: function(resp,msg){
			//$('ComparePanel1').style.visibility = 'visible';
			$('#ComparePanel2').css('visibility','visible');
		}
	});
}
function uncheck() {
	$("input[name=porajax]").each(function(){
		$(this).attr('checked',false);
	});
//	$('#ComparePanel2').css('visibility','hidden');
}
function showComp() {
	wdwPorAjax = window.open(pageUrl + '?q[s]=porajax','Porownywarka','resizable,scrollbars,width=1024,height=700');
	wdwPorAjax.window.focus();
}
