#!/usr/bin/perl

print "Content-type: text/html\n\n";

print <<"STARTOFTHEPAGE";

<html>
<head>
<title>MuncieMLS.com - Your best source for homes located throughout East Central Indiana!</title>

STARTOFTHEPAGE

&header;


print <<"ALLTHISSTUFF";
</td>
<td width="581" valign="top">
<img src="images/headers/welcome.gif" height="40" width="581" alt="Welcome To MuncieMLS.com"><Br>
<table border="0" cellpadding="6" width="581" cellspacing="0">
<tr>
<td valign="top" width="461">
ALLTHISSTUFF

&searchcriteria;

print <<"ALLTHISSTUFF2";
</td>
<td valign="top" width="120">
ALLTHISSTUFF2


&advertising;


print <<"ALLTHISSTUFF3";
</td>
</tr>
</td>
</html>
ALLTHISSTUFF3


&footer;


sub header {

open(HEADER,"includes/mainpage.txt");
@header = <HEADER>;
close(HEADER);

foreach $line (@header) {
print "$line";
}


}


sub searchcriteria {

open(SEARCHCRITERIA,"includes/landsearchcriteria.txt");
@searchcriteria = <SEARCHCRITERIA>;
close(SEARCHCRITERIA);

foreach $line (@searchcriteria) {
print "$line";
}


}


sub advertising {

open(ADVERTISING,"includes/advertising.txt");
@advertising = <ADVERTISING>;
close(ADVERTISING);

foreach $line (@advertising) {
print "$line";
}


}



sub footer {

open(FOOTER,"includes/footer.txt");
@footer = <FOOTER>;
close(FOOTER);

foreach $line (@footer) {
print "$line";
}

}
