

<!--
var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		
		var printWin = window.open("http://www.vanderbilt.edu/cft/gradstudents/f2p2/blank.htm", "printWin");
		
		//printWin.document.open();
		//printWin.document.write(html);
		//printWin.document.open();
		//printWin.document.write(html);
		//printWin.document.close();
		//printWin.focus();
		//printWin.stop();
		//document.close();
		//printWin.window.stop();
		//printWin.history.go(-1);
		if (gAutoPrint)
		{
			//printWin.print();
		}
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}
-->

