﻿// JScript File
var HomePageURL="http://www.godirectmailmarketing.com/"
var HomePageTitle="Go Direct Mailing Services Company"

var isWebTV = (navigator.appName.indexOf("WebTV") != -1) ? 1 : 0
var isMinNS4 = (document.layers) ? 1 : 0
var isMinIE4 = (document.all) ? 1 : 0
var isNS6 = (document.getElementById && !document.all) ? 1 : 0

function Window_OnLoad() {
    var srcname
	if (document.images)
		for(i=0;i<document.images.length;i++)
		{
		    srcname = document.images[i].src;
		    if (srcname.indexOf("dot.gif",0)<0)
			    document.images[i].onmousedown = ProtectImage;
		}
//	if (self.parent.frames.length != 0)
//		self.parent.location = HomePageURL;
	}

function Window_OnResize() {
	}

function ProtectImage(e) {
	if (event.button == 2)
		alert("Images on these pages may not be copied.")
	return false;
	}

function AddBookmark() {
	if (document.all) 
		window.external.AddFavorite( HomePageURL, HomePageTitle )
	}
