var w_storeid = 'candywarehouse';

function openPopup(popupID)
{	
	var strLocation='http://ydesigns.biz/tools/wishlist/v2/';
	var wishlistPopup = null;
	var popupName = w_storeid.replace(/-/,'') + 'popup';

	if(popupID=='lostpassword')
	{	var strLocation=strLocation + 'releasepass.php';	}
	else if(popupID=='newuser')
	{	var strLocation=strLocation + 'join.php';	}
	else if(popupID=='signin')
	{	var strLocation=strLocation + 'member.php';	}
	else if(popupID=='tellfriends')
	{	var strLocation=strLocation + 'notify.php';	}
	else if(popupID=='wishlist')
	{	var strLocation=strLocation+ 'showlist.php';	}
    strLocation = strLocation + "?storeID=" + w_storeid;
	wishlistPopup = window.open(strLocation, popupName,"toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=393,height=540");
    wishlistPopup.focus();
}

function addToWishlist(pageID,pageName,imgLoc)
{
	pageName = pageName.replace("&","and");
	var popupName = w_storeid.replace(/-/,'') + 'popup';
	var strLocation = "http://ydesigns.biz/tools/wishlist/v2/addlist.php?"+
				  "storeID=" + w_storeid + "&pageID="+pageID+"&pageName="+pageName+"&imgLoc="+imgLoc;
	var wishlistPopup = window.open(strLocation,popupName,"toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=393,height=540");
	wishlistPopup.focus();
}