/////////////////////////////////////////////////////////////////////////////////////
// freestyle javascript base version 3.01.00 for admin and hierarchy editor module
//-----------------------------------------------------------------------------
// ! DO NOT REMOVE THIS NOTICE ! 
// ! DO NOT CHANGE THIS NOTICE !
// THIS IS A LICENSED VERSION. 
// IT IS NOT ALLOWED TO REDISTRIBUTE THIS PRPGRAM OR ANY PART OF IT.
//-----------------------------------------------------------------------------
// Copyright (c) 2001-2004 by aClass+aWeaver and Ralph Stuermer. All Rights reserved.
// Developing+Programming by Ralph Stuermer
//-----------------------------------------------------------------------------
// DOM level 1 supported by NN6 and IE5 allows to dynamically create form
// elements and add them to a FORM.
/////////////////////////////////////////////////////////////////////////////////////

function save_content(link) {
	if(link==null) return;
	try {	
		var save_window=window.open(link,'_blank','width=800,height=500,resizable=yes,dependent=yes,status=no,toolbar=no,menubar=no,scrollbars=yes'); 
		if(save_window.focus) save_window.focus();
	} catch(exeption) {

	}
}

function print_content(link) {
	if(link==null) return;
	try {	
		var print_window=window.open(link,'_blank','width=800,height=500,resizable=yes,dependent=yes,status=no,toolbar=no,menubar=no,scrollbars=yes'); 
		if(print_window.focus) print_window.focus();
	} catch(exeption) {

	}
}
