// JavaScript Document

function newwinopen()
{
	var w,h;
	if(window.screen)
	{
		w = screen.width;
		h = screen.height;
	}
	winProperties = "width="+(w-7)+",height="+(h-171)+",toolbar=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes,status=yes"
	M_NewWindow = window.open("","hello",winProperties);
	M_NewWindow.moveTo(0,0);
	M_NewWindow.location.replace("http://www.tekdynamics.com");
}
