﻿// JScript File

// Escape framesets
if (window != top) top.location.href = location.href;

//Blocks all JavaScript errors
//function blockError(){return true;}
//window.onerror = blockError;

function openWin(url, title, tool, scroll, h, w){
	newWin=null;
	var pos = "center";
	var h = h;
	var w = w;
	myleft=(screen.width)?(screen.width-w)/2:100;
	mytop=(screen.height)?(screen.height-h)/2:100;
	settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",toolbar=" + tool + ",scrollbars=" + scroll + ",location=no,directories=no,status=no,menubar=no,resizable=yes";
	newWin=window.open(url,title,settings);
	newWin.focus();	
}

function showPromo(){
    url = "http://www.armstronghomes.net/message.htm";
    width = 350;  // width of window in pixels
    height = 350; // height of window in pixels
    delay = 1;    // time in seconds before popup opens
    timer = setTimeout("openWin(url,'promo','no','no',height,width)",delay*1000);
}
