// JavaScript Document

exitDomain = true;
window.onbeforeunload = askConfirm;

function askConfirm()
{
	if (exitDomain)
	{
		return "All Those Business Cards Sitting In Your House Right Now, Why Not Turn It Into $5000 A Month !!!";
	}
}
