// ################## popUp  #########################
function popUp(mUrl,mWname,mWidth,mHeight) {
	var mOptions = "toolbar=no,menubar=no,locationbar=no,scrollbars=yes,resizable=yes,status=no";
	mWindow = window.open(mUrl,mWname,mOptions + ",width=" + mWidth + ",height=" + mHeight);
	mWindow.focus();
}
	 
function set_select_box_item(my_value, select_object) {
	for (var mItem = 0; mItem < eval(select_object+'.length'); mItem++){
	    var mItemValue = eval(select_object+'['+mItem+'].value');
	   if (mItemValue == my_value) {
	       eval(select_object+'.selectedIndex ='+mItem);
	   }
	}
}

function print_page() {
	if (window.print)
	    window.print(); 
}