// JavaScript Document

<!--
function confirmation() {
	var answer = confirm("You are about to exit the PRIMARY URL..Do You Wish to Continue?")
	if (answer){
		alert("You are now being redirected to PICASSO MALL... Enjoy!")
		window.location = "https://www.picassomall.com/";
	}
	else{
		alert("Thanks for Supporting Us!")
	}
}
//-->
