function OpenHWWindowWithScroll( sDestination, iDestinationRank )
{
	var strTmp = 'scrollbars=1,resizable=yes';
	strTmp = strTmp + ',width=600,height=600';
	var HWWindow;

	HWWindow = window.open(sDestination, 'HWSupportingDoc', strTmp);
	HWWindow.focus();
}

function KillMe() 
{ 
	//if (window.event.keyCode == 13) 
	//{
	//	event.returnValue=false; 
	//	event.cancel = true;
	//}
} 






