var browsername=navigator.appName;
var browserversion=navigator.appVersion;




window.onload=function(){

testCookie("test");
attachHandlers();
readFrameCookie();

}


			
function testCookie(x){

var test_cookie="quick_test~"+x+";path=/";
document.cookie="sample_cookie="+escape(test_cookie);

readTestCookie();

}

function readTestCookie(){

if (document.cookie)
{return;}

else
{alert("You Won't Be Able To See Anything Without Enabling COOKIES\nIn Your Browser Go To\nTools, Internet Options and ENABLE COOKIES\nThen Refresh Page\nThank You")}

}


function adjustIEMid(){


var menu_sec=document.getElementById("niche_navi");
var menu_fix=parseInt(menu_sec.style.marginLeft);

menu_sec.style.marginLeft=(menu_fix - 25) + "px";

}


function attachHandlers(){

var a = document.getElementById("anchor_1");
var b = document.getElementById("anchor_2");
var img1= document.getElementById("anchor_3");
var img2= document.getElementById("anchor_4");
var img3= document.getElementById("anchor_5");
var img4= document.getElementById("anchor_6");
var img5= document.getElementById("anchor_7");
var img6= document.getElementById("anchor_8");

a.onclick=function(){switchFrame("image.html");};
b.onclick=function(){switchFrame("contact-us.html");};


img1.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/092310_watermarked/0923106.jpg","1136 Crescent Avenue NE Atlanta GA");}; 


img2.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/091410_watermarked/09141014.jpg","2416 Piedmont Rd NE Atlanta GA 30324");};


img3.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/090710_watermarked/0907106.jpg","3112 Piedmont Rd Atlanta GA");};


img4.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/090710_watermarked/0907102.jpg","3081 E Shadowlawn Avenue Atlanta GA 30305");};


img5.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/090710_watermarked/0907101.jpg","817 W Peachtree St Atlanta GA");}; 

img6.onclick=function(){setCookie("http://sociallyaffluent.com/Images/individual/090710_watermarked/09071011.jpg","1937 Piedmont Circle Atlanta GA 30324");};

}

  
var url_loc;

function switchFrame(y){

var frame=document.getElementById("banner-1");

if (url_loc==y)
{return;}
else
{ frame.src=y; url_loc=y; }

}

function setCookie(url_loc,evt_addy){

var the_cookie="address~"+url_loc+"^event_loc~"+evt_addy+";path=/";
document.cookie="my_cookie="+escape(the_cookie);

}

function setNewsCookie(img_url) {
	
var the_cookie="article_image~"+img_url+";path=/";
document.cookie="news_cookie="+escape(the_cookie);

}



function setFrameCookie(y){

var the_cookie="frame_address~"+y+";path=/";
document.cookie="frame_cookie="+escape(the_cookie);

}



function readFrameCookie(){

if(document.cookie)
{

  var the_cookie = document.cookie;
  var the_cookie = unescape(the_cookie);

  if (the_cookie.match(/frame_cookie/))
  {

    var broken_cookie = the_cookie.split("frame_cookie=");
    var main_part = broken_cookie[1]; 
    var the_semi = main_part.indexOf(";");                           //need to find the first instance of the semicolon
    var real_part = main_part.substr(0, the_semi);                  //then split among the first instance 
    var item_part = real_part.split("~");

    var frame=document.getElementById("banner-1");

    frame.src=item_part[1];
    url_loc=item_part[1];
    del_cookie("frame_cookie");
  }
  else
  {return;}

}
else
{return;}
}











