function isNull(val) {
	return (val == null);
}

function popUp(URL,MovWidth,MovHeight)
{
	window.open(URL, '_blank', 'toolbar=no,scrollbars=yes,location=no,titlebar=no,statusbar=no,menubar=no,resizable=yes,width='+MovWidth+',height='+MovHeight);
}

function popUpAllOn(URL,MovWidth,MovHeight)
{
	window.open(URL, '_blank', 'toolbar=yes,scrollbars=yes,location=yes,titlebar=yes,statusbar=yes,menubar=yes,resizable=yes,width='+MovWidth+',height='+MovHeight);
}


function activateTrackLink(){
	//alert("begin");
	
	//for each element having attribute "ozTrack" present
	$("[ozTrack]").each(function (i) {
        $(this).click(function(){
        	//set onclick event to trigger ozTrack function
        	//alert($(this).attr("href"));
        });
    });
	
}

$(document).ready(function() {
	//activateTrackLink();
});

