function sendStatisticPage(oid,linkType,statisticTag,anchorObject) {
	if (typeof(instadiaId)!='undefined') {
		try {
			Instadia_sendInfo(instadiaId,instadiaDesc);
		} catch ( instadiaError ) {}		
	}
}

function doBeforeLoad(){
	try {
		sendStatisticPage();
	} catch ( error ) {  }
}

function doBeforeLoadSplash(){
	try {
		sendStatisticPage();
	} catch ( error ) {  }
}

function openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function openLinkInNewWindow(link){
  var winl = 10;
  var wint = 10;
  var w = screen.width - winl;
  var h = screen.height - wint;
  if (w > 800) w = 800;
  if (h > 600) h = 600;
  var winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,location=yes,menubar=yes,status=yes,toolbar=yes';
  win = window.open(link, 'ext_link_win', winprops);
  //win.window.focus();
}