﻿/*
 * Global Scripts
 */
function toggleDisplay(item) {
	//$(item).toggle();
	jQuery(item).toggle();
}

function targetBlank(url) {
	blankWin = window.open(url, '_blank', 'menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}
