function openPage(targetUrl) {
	window.open(targetUrl, '_blank','top=100, left=100, height=740, width=1140, status=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no');
}
function getObject(objectId) {
  // checkW3C DOM, then MSIE 4, then NN 4.
  //
  if(document.getElementById && document.getElementById(objectId)) {
	return document.getElementById(objectId);
   }
   else if (document.all && document.all(objectId)) {  
	return document.all(objectId);
   } 
   else if (document.layers && document.layers[objectId]) { 
	return document.layers[objectId];
   } else {
	return false;
   }
}


function changeStatus(varb) {
	var Status = getObject('status');
		Status.value = varb;
}

function addLink() {
		document.addNotification.textbody.value +=  '[link-addr]http://www.domain.jotain[link-text]naytettava linkki[end-link]';
}
