/* General Functions */

/* sets current year */
var date = new Date();
var year = date.getYear();
if (year < 1000) year += 1900;
	



    /* ------------------------------- //
	//       Window Popup Function     //
	// ------------------------------- */
	var w;
	function popup(target, width, height, scrollbars, hidemenus){
 		var settings;
 		var menus;
 		var scrolls;
		
 		if (hidemenus) { menus = ",status=yes,toolbar=no,menubar=no,location=no"; }else{ menus = ",status=yes,toolbar=yes,menubar=yes,location=yes"; }
		
 		if (scrollbars) { scrolls = ",scrollbars=yes"; }else{ scrolls = ""; }
		
 		settings = 'width=' + width + ',height=' + height + ',resizable=yes' + scrolls + menus;
		
 		w = window.open(target,'bearpop',settings);
 		w.focus();
	}







