﻿
function popwin(url)
	{
	window.open ('/dev-v1/' + url, 'ShirePopup', config='height=550,width=550, toolbar=no, menubar=yes, scrollbars=yes, resizable=yes, location=yes, directories=no, status=yes');
	}




function printYear()
{
	now = new Date;
	theYear=now.getYear();
	if (theYear < 1900)
		theYear=theYear+1900;
	document.write(theYear)
}

