function sitebounce(link)
{	
	if(confirm('You are about to leave the Old Point Financial Corporation website.\n\nOld Point Financial Corporation is not affiliated in any way with the company or organization to which you are being directed.  Old Point Financial Corporation cannot be held responsible for the material presented on the site, nor can we guarantee the accuracy of the information offered or the privacy of any information you may disclose while on the linked site.\n\nClick OK to continue, or Cancel to remain your current page.'))
	{
		window.location.href = link;
	}
}

function sitebounce_newwin(link)
{
	if(confirm('You are about to leave the Old Point Financial Corporation website.\n\nOld Point Financial Corporation is not affiliated in any way with the company or organization to which you are being directed.  Old Point Financial Corporation cannot be held responsible for the material presented on the site, nor can we guarantee the accuracy of the information offered or the privacy of any information you may disclose while on the linked site.\n\nClick OK to continue, or Cancel to remain your current page.'))
	{
		var features = "scrollbars=yes,menubar=yes, resizable=yes, toolbar=yes, location=yes, status=yes";
		var newwin = window.open(link, "locallink", features);
		newwin.focus();
	}
}

function openwindowsize(link, label, width, height)
{
	var features = "scrollbars=yes,menubar=no, resizable=yes, toolbar=no, location=no, status=no, width=" + width + ", height=" + height + "";
	window.open(link, label, features);
}

function openwindowsizemove(link, label, width, height, locx, locy)
{
	var features = "scrollbars=yes,menubar=no, resizable=yes, toolbar=no, location=no, status=no, width=" + width + ", height=" + height + "";
	var mywindow = window.open(link, label, features);
	mywindow.moveTo(locx,locy);
}

