// JavaScript Document

function DisplayPoweredByQVC() { 
	document.write('<p class="loginQ">Handbag Chick is powered by QVC. Ready to make a purchase?  '); 
	document.write("Just log into your QVC Account and you'll be good to go! If you don't have a QVC "); 
	document.write('Account, simply click on the link below and sign up. It will only take a handful ');
	document.write("of minutes and then you'll be all set to make that bag yours.</p> ");
}

function DisplayLogOut()
{
	// Find QSV cookie
	var arrCookies = document.cookie.split(";");
	for(var i=0; i < arrCookies.length; i++){
		var strCookieName = "QSV=";
		if(arrCookies[i].indexOf(strCookieName) > -1){
				document.write ('<li><a href="javascript:RemoveCookie(\'QSV\')">Log Out</a></li>');
				break;
		}
	}
}

function RemoveCookie ( cookie_name )
{
  var cookie_date = new Date ( );  // current date & time
  cookie_date.setTime ( cookie_date.getTime() - 1 );
  document.cookie = cookie_name += "=; expires=" + cookie_date.toGMTString();
  window.location="qic/qvcapp.aspx/view.2/app.multi/params.file.|UniversalLogin|templates|logoffconfirmation,html.odat.bag"
}
