// TCH JavaScript Document
function openImage(file) {
	url = '/images/homes/' + file;
	winsize = 'width=700,height=400,'

	winattrib = winsize + 'status=yes,resizable=yes,scrollbars=yes,screenX=0,screenY=0';
	wallwin = window.open('','wallwindow',winattrib);
	wallwin.document.writeln('<html><head><title>Timber Creek Homes, Inc.</title><link href="global/TCH-window_style.css" rel="stylesheet" type="text/css" /></head>');
	wallwin.document.writeln('<body>');
	wallwin.document.writeln('<img id="container" src="', url, '" alt="Timber Creek Homes, Inc." />');
	wallwin.document.writeln('</body></html>');
	wallwin.document.close();
	wallwin.focus();
	wallwinstat="yes";
}
function enlargeMap(file) {
	url = "images/" + file;
	winsize = "width=660,height=300,"

	winattrib = winsize + 'status=yes,resizable=yes,scrollbars=yes,screenX=0,screenY=0';
	wallwin = window.open('','wallwindow',winattrib);
	wallwin.document.writeln('<html><head><title>Timber Creek Homes, Inc.</title><link href="global/TCH-window_style.css" rel="stylesheet" type="text/css" /></head>');
	wallwin.document.writeln('<body>');
	wallwin.document.writeln('<img id="container" src="', url, '" alt="Timber Creek Homes, Inc." />');
	wallwin.document.writeln('</body></html>');
	wallwin.document.close();
	wallwin.focus();
	wallwinstat="yes";
}
function viewMap(file) {
	url = "assets/elements/" + file;
	winsize = "width=660,height=440,"
	winattrib = winsize + 'status=yes,resizable=yes,scrollbars=yes';
	wallwin = window.open(url,'wallwindow',winattrib);
	//wallwin.document.close();
	wallwin.focus();
	wallwinstat="yes";
}