function wopen(page, title, width, height, features) {
	if(!page)
		return false;

	if(!width)
		width = '670';

	if(!height)
		height = '550';

	if(!features)
		features = ', scrollbars=0,resizable=0,status=0';
		
	window.open( page, title, 'width=' + width + ' , height=' + height + features);
}

function form_selectOption(_obj){
	_value = _obj[_obj.selectedIndex].value;
	_form = _obj.form;
	if( _value != "" ){
		document.location.href = _value;
	}
}

