
function precheckSubscribe(p)	{
	if(p)	{
		ct = p.split(".");
		if((ct[1] == 'apparel') && document.getElementById('subscribe_6_id'))	{
			document.getElementById('subscribe_6_id').checked=true
			}
		else if(ct[1] == 'home_furnishings' && document.getElementById('subscribe_7_id'))	{
			document.getElementById('subscribe_7_id').checked=true
			}
		else if(document.getElementById('subscribe_6_id') && document.getElementById('subscribe_7_id'))	{
			document.getElementById('subscribe_6_id').checked=true
			document.getElementById('subscribe_7_id').checked=true
			}
		else{}
		}
	}


function CreateBookmarkLink() { 
	   
	url = window.location.href;  
// Mozilla Firefox Bookmark		
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
		}
// IE Favorite
	else if( window.external ) {
		window.external.AddFavorite( url, title); 
		}
// Opera Hotlist
	else if(window.opera && window.print) {
		return true;
		}
	}

