// JavaScript Document
function makelink()
{
var url = "http://www.great-isp-deals.com/";
var title = "Great-ISP-Deals.com";
	if(document.all)
	window.external.AddFavorite(url,title)
}

function pDate() {
var now = new Date();
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

document.write(dayNames[now.getDay()] + ", " + monNames[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear());
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  		window.open(theURL,winName,features);
  		window.blur;
}

<!-- Begin
function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
popup = window.open(URL, "popup", windowprops);
popup.resizeTo(WIDTH+10, HEIGHT+30);
popup.focus();
setTimeout("popup.blur()", 3000);
}

function doPopup(thisurl, thiswidth, thisheight) {
url = thisurl;
width = thiswidth;  // width of window in pixels
height = thisheight; // height of window in pixels
delay = 5;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}
//  End -->
