
<!--

/***********************************************
* Confirm Delete a CV
***********************************************/

function confirmSubmit(txt)
{
var r=confirm("Are you sure you want to delete " + txt);
if (r==true)
	return true ;
else
	return false ;
}

function displayNotification(txt)
{
alert("Your request for further information has been sent to the Entrepreneur" + '\n' + "Business Name: " +txt);
}

function displayNotification2(txt)
{
alert("Your request for further information has been sent to the Investor" + '\n' + "Investor Name: " +txt);
}

function warnInvestor(txt1,txt2)
{
alert(txt1 + '\n' + txt2 + '\n');
}

function displayNotificationPayPal()
{
var r=confirm("Do you really want to unsubscribe from " + '\n' + "inbizvest.com ?");
if (r==true)
	return true ;
else
	return false ;

}

// -->
