function listing(x,y,z,a,b,c,d) {
	var w = window.open("","win","height=575,width=600;");
	var writethis = '<!DOCTYPE HTML PUBLIC "-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN"><html><head><title>Charles Roccaforte \& Associates - Hill Country Plans<\/title><link rel="stylesheet" href="css\/hcp.css" type="text\/css"><\/head><body><table border="3" cellpadding="20" cellspacing="0" bordercolor="#A01D21" bgcolor="#ACB1AA" align="center"><tr><td align="center">';
	writethis = writethis + '<img src="images\/plans\/lg\/' + x + '" alt="" border="1"><br><br>';
	writethis = writethis + '<font size="4"><b>' + y + '<\/b><br><font size="3"><i>' + z + '<\/i><\/font><\/font><br><br>';
	writethis = writethis + '<table border="0" cellpadding="1" cellspacing="0" align="center"><tr><td align="right">Square Feet:<\/td><td>' + a + '</td><\/tr><tr><td align="right">Stories:</td><td>' + b + '<\/td><\/tr><tr><td align="right">Bedrooms:</td><td>' + c + '<\/td><\/tr><tr><td align="right">Bathrooms:</td><td>' + d + '<\/td><\/tr><\/table>';
	writethis = writethis + '<\/td><\/tr><\/table><\/body><\/html>';
	w.document.open();
	w.document.write(writethis);
	w.document.close();
}