function wishlistmsg()
{
	if(document.location.search == '?padd')
	{
		document.getElementById('wishlist-msg').innerHTML = "Product successfully added to your Wishlist.";
		document.getElementById('wishlist-msg').style.display = "block";
	}
	if(document.location.search == '?palready')
	{
		document.getElementById('wishlist-msg').innerHTML = "Product already exist in your Wishlist.";
		document.getElementById('wishlist-msg').style.display = "block";
	}
	if(document.location.search == '?plogin')
	{
		document.getElementById('wishlist-msg').innerHTML = "Please do Login to use Wishlist.";
		document.getElementById('wishlist-msg').style.display = "block";
	}
}
