/*****************************************************
*	Open Window Fucntion
*****************************************************/

function openWin (url,width,height,extras) {
	if (window.open) {
		if (width < 0 || height < 0) {
			newWin = window.open(url,"",extras);
		} else {
			newWin = window.open(url,"","width="+ width +",height="+ height +","+ extras);
		}
	} else {
		return false;
	}
}



/*  <a href="javascript://" onclick="javascript:openWin('../javascript/external_link.html?http://www.foothillbank.com',400,175);">Foothill Independent Bancorp and Foothill Independent Bank</a>                                           */
