/**
* @program: Javascript Mini Window
* @description: This program opens a new mini window. It also has functions
*               controls in the mini window.
*/

// Function that opens the new window beforte sending email
function legalNotice()
{
        window.open("notice.html","Notice","height=450,width=700");
}

// Opens the email
function openemail()
{
		window.location="mailto:office@legalappeal.com";
}

// Function that closes the window
function closeWindow()
{
		window.close();
}

// Open window script for the map
function openWindow() {
        window.open("map.htm","map","width=400,height=500");
}

// Function that opens the new window to read disclaimer before entering text in form 
function legalNotice2()
{
        window.open("notice2.html","Notice","height=450,width=700");
}
