
function newWindow(a) {
      a.target = "_blank";
}

function object_support_detect () {
	// <object> tag support check for the browser
	// Write an object to the browser
	// then test if it exists
	// Return value can be used to choose <object> or <embed> support
	var testName = "blank";
	document.write("<object id=\"" + testName + "\"></object>");
	var testObject;
	if ( window.mmIsOpera ) testObject = (document.getElementById(item));
	if (document.all) testObject = (document.all[item]);
	if (document.getElementById) testObject = (document.getElementById(item));
	if (testObject == null) {
		return false;
	} else {
		return true;
	}
}