function bookmarkSite(){
		
	var appName = navigator.appName.toLowerCase(); 
	var userAgent = navigator.userAgent.toLowerCase();
	
	if (appName.indexOf("explorer") != -1){
		window.external.AddFavorite(parent.window.location, parent.document.title);
	} else {
		var info;
		if (userAgent.indexOf("mac") != -1){
			info = "Please use Cmd-D or the menu to bookmark Adnuvo.com";
		} else {
			info = "Please use Ctrl-D or the menu to bookmark Adnuvo.com";
		}
		alert(info);		
	}
	
}

function maximize(){
	top.window.moveTo(0,0); 
	if (document.all) 
	   { top.window.resizeTo(screen.availWidth,screen.availHeight); } 
	else if 
	   (document.layers || document.getElementById) 
	   { 
	   if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth)
		 { top.window.outerHeight = top.screen.availHeight; 
		   top.window.outerWidth = top.screen.availWidth; } 
	   } 
}
